ZF-1926: webSearch() returns wrong CacheUrl and CacheSize
Description
When using webSearch() each item has the same CacheUrl and CacheSize. It seems that it's always the data form the first hit.
Reproduce code:
<?php
require_once 'Zend/Service/Yahoo.php';
$yahoo = new Zend_Service_Yahoo("API-KEY");
$results = $yahoo->webSearch('php');
foreach ($results as $result)
{
echo "$result->Title
";
echo "$result->Url
";
echo "$result->CacheUrl
";
echo "$result->CacheSize
";
}
Comments
Posted by Thomas Weidner (thomas) on 2007-09-11T13:00:54.000+0000
Assigned to Darby
Posted by Simone Carletti (weppos) on 2007-12-03T14:21:46.000+0000
Fixed in r7026