Remove the PHP 5.3 deprecated split function.
This commit is contained in:
@@ -231,7 +231,7 @@ class IDF_Views_Download
|
||||
foreach ($st as $s) {
|
||||
$v = '';
|
||||
$d = '';
|
||||
$_s = split('=', $s, 2);
|
||||
$_s = explode('=', $s, 2);
|
||||
if (count($_s) > 1) {
|
||||
$v = trim($_s[0]);
|
||||
$d = trim($_s[1]);
|
||||
|
Reference in New Issue
Block a user