diff options
Diffstat (limited to 'includes/ZhClient.php')
-rw-r--r-- | includes/ZhClient.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/ZhClient.php b/includes/ZhClient.php index e07908db9db0..7bedf827293d 100644 --- a/includes/ZhClient.php +++ b/includes/ZhClient.php @@ -106,7 +106,7 @@ class ZhClient { $result = $this->query($q); if(!$result) return false; - list($infoline, $data) = explode('|', $result); + list($infoline, $data) = explode('|', $result, 2); $info = explode(";", $infoline); $ret = array(); $i=0; |