Browse Source

ZF-8460: Replace call to Zend_Gdata::setStaticHttpClient() with self::setStaticHttpClient() in Zend_Gdata_App.

Zend_Gdata inherits from Zend_Gdata_App, so this call shouldn't be allowed.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19508 44c647ce-9c0f-0410-b52a-842ac1e357ba
tjohns 16 years ago
parent
commit
57982a8a40
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library/Zend/Gdata/App.php

+ 1 - 1
library/Zend/Gdata/App.php

@@ -256,7 +256,7 @@ class Zend_Gdata_App
             )
             )
         );
         );
         $this->_httpClient = $client;
         $this->_httpClient = $client;
-        Zend_Gdata::setStaticHttpClient($client);
+        self::setStaticHttpClient($client);
         return $this;
         return $this;
     }
     }