2
0
forked from Wavyzz/dolibarr

Fix: function "split" is deprecated since php 5.3.0

This commit is contained in:
Regis Houssin
2009-10-21 19:49:29 +00:00
parent d50d4bae7c
commit 679ef74b24
3 changed files with 4 additions and 4 deletions

View File

@@ -181,7 +181,7 @@ function smarty_function_fetch($params, &$smarty)
$content .= fgets($fp,4096);
}
fclose($fp);
$csplit = split("\r\n\r\n",$content,2);
$csplit = explode("\r\n\r\n",$content,2);
$content = $csplit[1];