mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-03-13 05:41:02 +00:00
fix foreach continue level
This commit is contained in:
parent
1012759c65
commit
56c376474f
@ -1015,17 +1015,17 @@ foreach ($db->getHostPageCrawlQueue(CRAWL_HOST_PAGE_QUEUE_LIMIT, time() - CRAWL_
|
||||
|
||||
if (!isset($value->enabled)) {
|
||||
|
||||
continue;
|
||||
continue 2;
|
||||
}
|
||||
|
||||
if (false === $value->enabled) {
|
||||
|
||||
continue;
|
||||
continue 2;
|
||||
}
|
||||
|
||||
if (!isset($value->allowed_tags)) {
|
||||
|
||||
continue;
|
||||
continue 2;
|
||||
}
|
||||
|
||||
$value = strip_tags($value, $value->allowed_tags);
|
||||
|
Loading…
x
Reference in New Issue
Block a user