From 60c54cfa492892bb51a470d7f4847c535ccdebab Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Mon, 21 Nov 2011 10:24:40 -0500 Subject: [PATCH] Fixed: PHP Fatal error: Cannot use string offset as an array in /tmp/trunk/install/lib/installer_base.lib.php on line 638 --- server/plugins-available/mysql_clientdb_plugin.inc.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/plugins-available/mysql_clientdb_plugin.inc.php b/server/plugins-available/mysql_clientdb_plugin.inc.php index 2dcf591..65c87d7 100644 --- a/server/plugins-available/mysql_clientdb_plugin.inc.php +++ b/server/plugins-available/mysql_clientdb_plugin.inc.php @@ -75,7 +75,7 @@ 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; -- Gitblit v1.9.1