forked from Wavyzz/dolibarr
Fix: function "split" is deprecated since php 5.3.0
This commit is contained in:
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user