Hi,
Yes, it's terribly minor (or even less), anyway I get a nice warning
'assignment in condition' in the openid.php file at line 340 when working with
ZendStudio:
"
$content = $this->request($url, 'GET');
if ($location = $this->htmlTag($content, 'meta', 'http-equiv',
'X-XRDS-Location', 'value')) {
$url = $this->build_url(parse_url($url), parse_url($location));
continue;
}
"
If you just replace it with something like this, ZendStudio is happy as well.
Tnx!
"
$content = $this->request($url, 'GET');
$location = $this->htmlTag($content, 'meta', 'http-equiv', 'X-XRDS-Location',
'value');
if ($location=='') {
$url = $this->build_url(parse_url($url), parse_url($location));
continue;
}
Original issue reported on code.google.com by nielsba...@gmail.com on 21 Nov 2010 at 10:40
Original issue reported on code.google.com by
nielsba...@gmail.com
on 21 Nov 2010 at 10:40