1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00

Fix ( для браузеров на движке webkit )

This commit is contained in:
Alexey Kachayev 2009-10-02 23:01:46 +00:00
parent 2f81c6576b
commit be57c76a71

View file

@ -39,11 +39,11 @@ class LsSecurity extends Module {
public function ValidateReferal() {
if (isset($_SERVER['HTTP_REFERER'])) {
$aUrl=parse_url($_SERVER['HTTP_REFERER']);
if ($aUrl['host']==$_SERVER['HTTP_HOST']) {
if (strcasecmp($aUrl['host'],$_SERVER['HTTP_HOST'])) {
return true;
} elseif (preg_match("/\.".quotemeta($_SERVER['HTTP_HOST'])."$/i",$aUrl['host'])) {
return true;
}
}
}
return false;
}