Browse Source

change DEFAULT_HOST_URL_REGEXP check from host to page URL

main
ghost 1 year ago
parent
commit
b1bfd79b80
  1. 4
      src/library/helper.php

4
src/library/helper.php

@ -73,7 +73,7 @@ class Helper { @@ -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 { @@ -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…
Cancel
Save