From 85025d16d3f2041d90cfd870c5e816aa22e965a4 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Mon, 27 Dec 2010 13:58:06 +0800 Subject: [PATCH] Removed debug line. --- 3.1/modules/bitly/helpers/bitly.php | 1 - 1 file changed, 1 deletion(-) diff --git a/3.1/modules/bitly/helpers/bitly.php b/3.1/modules/bitly/helpers/bitly.php index 6462804b..2ba90670 100644 --- a/3.1/modules/bitly/helpers/bitly.php +++ b/3.1/modules/bitly/helpers/bitly.php @@ -145,7 +145,6 @@ class bitly_Core { */ private static function _http_post($http_request) { $response = ''; - //Kohana_Log::add("debug", "Send request\n" . print_r($http_request, 1)); if (false !== ($fs = @fsockopen(self::$api_host, 80, $errno, $errstr, 5))) { fwrite($fs, $http_request); while ( !feof($fs) ) {