From 5116845ffa194e83135893618213a4829519672d Mon Sep 17 00:00:00 2001 From: tjohns Date: Mon, 7 Dec 2009 23:57:32 +0000 Subject: [PATCH] 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 --- library/Zend/Gdata/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Zend/Gdata/App.php b/library/Zend/Gdata/App.php index 440668f4c..dff6feec9 100644 --- a/library/Zend/Gdata/App.php +++ b/library/Zend/Gdata/App.php @@ -256,7 +256,7 @@ class Zend_Gdata_App ) ); $this->_httpClient = $client; - Zend_Gdata::setStaticHttpClient($client); + self::setStaticHttpClient($client); return $this; } -- 2.11.4.GIT