| Issue 44: | Mishandled https:// urls in LightOpenID::__construct() | |
| 1 person starred this issue and may be notified of changes. | Back to list |
When php script with LightOpenID constructor call is accessed via https:// scheme AND constructor is given 'https://example.com' address $openid->realm is malformed.
Following code:
$openid = LightOpenID('https://example.com');
echo $openid->realm;
produces
'https://https://example.com'
where it should be:
'https://example.com'
Jul 20, 2011
Project Member
#1
mewp...@gmail.com
Status:
Fixed
|