From ecf891ab69b38ee1bcd0533d9a4f30d218c7e99c Mon Sep 17 00:00:00 2001 From: nveid <nveid@ispconfig3> Date: Mon, 21 Nov 2011 01:04:18 -0500 Subject: [PATCH] Added remoting API call: client_get_all @param -> session_id @return -> Array of all Client IDs on server --- 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