pecesama před 16 roky
rodič
revize
1af72e38d3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      classes/functions.php

+ 1 - 1
classes/functions.php Zobrazit soubor

@@ -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
 	}