ZF-12363: Zend_Gdata_Analytics uses 'Query' and not 'Zend_Gdata_Query'
Description
In Zend_Gdata_Analytics from 1.12.0rc3 the methods getAccountFeed() and getDataFeed() both have:
if ($uri instanceof Query) {
$uri = $uri->getQueryUrl();
}
But I suspect that it really should be:
if ($uri instanceof Zend_Gdata_Query) {
$uri = $uri->getQueryUrl();
}
as it is within Zend_Gdata::getFeed(), etc.
Comments
No comments to display