Browse Source

fixed ; bug

pecesama 16 years ago
parent
commit
1af72e38d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      classes/functions.php

+ 1 - 1
classes/functions.php View File

@@ -473,7 +473,7 @@ if(!defined('entry') || !entry) die('Not a valid page');
473 473
 	}
474 474
 	
475 475
 	function trimString($string, $len = "") {
476
-		$string = strip_tags($string)
476
+		$string = strip_tags($string);
477 477
 		$len = (empty($len)) ? "50" : $len ;		
478 478
 		return ( strpos($string, " ", $len) ) ? substr_replace($string, "...", $len) : $string ;
479 479
 	}