From ab60a0f3892b99ae951dde81e34c409a08485e42 Mon Sep 17 00:00:00 2001 From: james Date: Wed, 24 Feb 2010 01:24:13 +0000 Subject: [PATCH] Get rid of the debug for now, it breaks functions that return json. --- admin/curl.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/curl.inc.php b/admin/curl.inc.php index 1cbad723..49be0533 100644 --- a/admin/curl.inc.php +++ b/admin/curl.inc.php @@ -86,7 +86,7 @@ break; } - debug_("Curl Send: (type:{$fair['type']}=>$url) $str"); +// debug_("Curl Send: (type:{$fair['type']}=>$url) $str"); $ch = curl_init(); /// initialize a cURL session curl_setopt ($ch, CURLOPT_URL, $url); @@ -101,7 +101,7 @@ $datastream = curl_exec ($ch); /// execute the curl session and return the output to a variable $datastream curl_close ($ch); /// close the curl session - debug_("Server Returned: ".urldecode($datastream)); +// debug_("Server Returned: ".urldecode($datastream)); switch($fair['type']) { case 'sfiab': @@ -145,7 +145,7 @@ } break; } - debug_("Returning: ".print_r($ret, true)); +//n debug_("Returning: ".print_r($ret, true)); return $ret; } ?>