diff options
author | Alexey Zakhlestin <indeyets@gmail.com> | 2010-03-24 05:23:36 +0800 |
---|---|---|
committer | lillialexis <lillialexis@gmail.com> | 2010-04-29 04:48:11 +0800 |
commit | 62a39fa57de016b7dc5f6ae389a5866dfc79ed13 (patch) | |
tree | 20f2a4712809732bb205a89d9a37e1f72e9a944c /Auth | |
parent | 8430cc6e6558dcab9ad445415eeec6aa0e7e7658 (diff) | |
download | php-openid-62a39fa57de016b7dc5f6ae389a5866dfc79ed13.zip php-openid-62a39fa57de016b7dc5f6ae389a5866dfc79ed13.tar.gz php-openid-62a39fa57de016b7dc5f6ae389a5866dfc79ed13.tar.bz2 |
fix typo
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(); } |