From: Michael J. Rubinsky Date: Sun, 19 Jul 2009 19:22:25 +0000 (-0400) Subject: Remove debug output X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ef2cc48069834a7e2b7ad87f2dfcff8ffd84df09;p=horde.git Remove debug output --- diff --git a/framework/Oauth/lib/Horde/Oauth/Request.php b/framework/Oauth/lib/Horde/Oauth/Request.php index ebe4a48a1..10e6c9621 100644 --- a/framework/Oauth/lib/Horde/Oauth/Request.php +++ b/framework/Oauth/lib/Horde/Oauth/Request.php @@ -95,7 +95,6 @@ class Horde_Oauth_Request public function buildAuthorizationHeader($realm = '') { $header = ''; - var_dump($this->_params); foreach ($this->_params as $k => $v) { if (strpos($k, 'oauth_') !== false) { $header .= Horde_Oauth_Utils::urlencodeRfc3986($k) . '="' . Horde_Oauth_Utils::urlencodeRfc3986($v) . '",';