diff options
Diffstat (limited to 'Auth')
-rw-r--r-- | Auth/OpenID/Parse.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Auth/OpenID/Parse.php b/Auth/OpenID/Parse.php index 4e6c7dd..ca8bde8 100644 --- a/Auth/OpenID/Parse.php +++ b/Auth/OpenID/Parse.php @@ -269,8 +269,8 @@ class Auth_OpenID_Parse { // Try to find the <HEAD> tag. $head_re = $this->headFind(); - $html_match = ''; - if (!$this->match($html_re, $stripped, $html_match)) { + $head_match = ''; + if (!$this->match($head_re, $stripped, $head_match)) { ini_set( 'pcre.backtrack_limit', $old_btlimit ); return array(); } |