Properly update to smarty 3.1.27.

(cherry picked from commit a02262a)
This commit is contained in:
DariusIII
2015-06-24 00:47:04 +02:00
parent ff04d8d428
commit febc882e79
13 changed files with 879 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
function smarty_modifier_parray ($string,$explode,$limit=NULL)
{
if($limit == NULL)
return explode( $explode , $string );
else
return explode( $explode , $string , $limit);
}
?>