Ver Fonte

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 há 16 anos atrás
pai
commit
57982a8a40
1 ficheiros alterados com 1 adições e 1 exclusões
  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;
     }
     }