From eb170b4be7280bdb2ed0c81a7b501f890a1c8ea7 Mon Sep 17 00:00:00 2001 From: Zheng Zhu Date: Mon, 29 Nov 2004 02:36:27 +0000 Subject: [PATCH 1/1] explode with limit --- includes/ZhClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ZhClient.php b/includes/ZhClient.php index e07908db9d..7bedf82729 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; -- 2.20.1