ZF-3246: getUrlDetails() has a missing bracket
Description
public function getUrlDetails($url) {
$parms = array('hash' => md5($url));
$res = $this->makeRequest(self::JSON_URL, $parms, 'json');
if(isset($res[0])) {
return $res[0];
} else {
return null;
}
}
Also, this doesn't conform to code standards (function bracket must be on a new line, spaces instead of tabs).
Comments
Posted by Goran Hacek (ghacek) on 2008-06-08T09:13:37.000+0000
I have fixed a coding standards problem in revision r9638, but I can't find a missing bracket. There is no syntax error in file Delicious.php.
I am marking this issue as fixed.
Posted by Wil Sinclair (wil) on 2008-09-02T10:39:15.000+0000
Updating for the 1.6.0 release.