Commit 58d1f15b authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1891 - PHP Deprecated Function split() in mysql_clientdb_plugin.inc.php

parent 876d6703
......@@ -75,7 +75,7 @@ class mysql_clientdb_plugin {
if(trim($host_list) == '') $host_list = '%';
// process arrays and comma separated strings
if(!is_array($host_list)) $host_list = split(',', $host_list);
if(!is_array($host_list)) $host_list = explode(',', $host_list);
$success = true;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment