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
 	}
473
 	}
474
 	
474
 	
475
 	function trimString($string, $len = "") {
475
 	function trimString($string, $len = "") {
476
-		$string = strip_tags($string)
476
+		$string = strip_tags($string);
477
 		$len = (empty($len)) ? "50" : $len ;		
477
 		$len = (empty($len)) ? "50" : $len ;		
478
 		return ( strpos($string, " ", $len) ) ? substr_replace($string, "...", $len) : $string ;
478
 		return ( strpos($string, " ", $len) ) ? substr_replace($string, "...", $len) : $string ;
479
 	}
479
 	}