forked from GNUsocial/gnu-social
Merge branch 'case-sensitive-openid' into 'master'
Fix OpenID discovery in pages using uppercase <HEAD> tag Closes #60 See merge request !140
This commit is contained in:
commit
e3cafc011e
@ -218,22 +218,12 @@ class Auth_OpenID_Parse {
|
|||||||
|
|
||||||
function match($regexp, $text, &$match)
|
function match($regexp, $text, &$match)
|
||||||
{
|
{
|
||||||
if (!is_callable('mb_ereg_search_init')) {
|
if (preg_match($regexp, $text, $match)) {
|
||||||
if (!preg_match($regexp, $text, $match)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$match = $match[0];
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$regexp = substr($regexp, 1, strlen($regexp) - 2 - strlen($this->_re_flags));
|
|
||||||
mb_ereg_search_init($text);
|
|
||||||
if (!mb_ereg_search($regexp)) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$match = mb_ereg_search_getregs();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find all link tags in a string representing a HTML document and
|
* Find all link tags in a string representing a HTML document and
|
||||||
|
Loading…
Reference in New Issue
Block a user