mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-08-31 16:21:56 +00:00
change DEFAULT_HOST_URL_REGEXP check from host to page URL
This commit is contained in:
parent
a8ffe14349
commit
b1bfd79b80
@ -73,7 +73,7 @@ class Helper {
|
||||
if ($host = $db->findHostByCRC32URL(crc32($link->host->url))) {
|
||||
|
||||
// Make sure host URL compatible with this host rules before continue
|
||||
if (!preg_match(self::getHostSettingValue($db, $memory, $host->hostId, 'URL_REGEXP', DEFAULT_HOST_URL_REGEXP), $link->host->url)) {
|
||||
if (!preg_match(self::getHostSettingValue($db, $memory, $host->hostId, 'URL_REGEXP', DEFAULT_HOST_URL_REGEXP), $link->page->url)) {
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -85,7 +85,7 @@ class Helper {
|
||||
} else {
|
||||
|
||||
// Make sure link compatible with default host rules before create new host
|
||||
if (!preg_match(DEFAULT_HOST_URL_REGEXP, $link->host->url)) {
|
||||
if (!preg_match(DEFAULT_HOST_URL_REGEXP, $link->page->url)) {
|
||||
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user