diff --git a/include/functions.php b/include/functions.php
index efaa47ba..ebb8c6bf 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -2650,6 +2650,7 @@ else {
%s]', $CURUSER['id'], (new \App\Repositories\ClaimRepository())->getStats($CURUSER['id']))?>
+
|
+
whereIn('torrent_id', $torrentIdArr)->get();
$torrentTagResult = $torrentTagCollection->groupBy('torrent_id');
$showCover = false;
- $showSeedBoxIcon = get_setting('seed_box.enabled') == 'yes';
+ $showSeedBoxIcon = false;
if ($searchBoxId) {
$searchBoxExtra = get_searchbox_value($searchBoxId, "extra");
if (!empty($searchBoxExtra[\App\Models\SearchBox::EXTRA_DISPLAY_COVER_ON_TORRENT_LIST])) {
$showCover = true;
}
+ $showSeedBoxIcon = get_setting('seed_box.enabled') == 'yes';
if (empty($searchBoxExtra[\App\Models\SearchBox::EXTRA_DISPLAY_SEED_BOX_ICON_ON_TORRENT_LIST])) {
$showSeedBoxIcon = false;
}
@@ -5710,6 +5713,7 @@ function list_require_search_box_id()
'userdetails' => [$setting['browsecat'], $setting['specialcat']],
'offers' => [$setting['browsecat'], $setting['specialcat']],
'details' => [$setting['browsecat'], $setting['specialcat']],
+ 'search' => [$setting['browsecat'], $setting['specialcat']],
];
return $maps[nexus()->getScript()] ?? [];
}
@@ -5796,7 +5800,7 @@ function get_ip_location_from_geoip($ip): bool|array
function msgalert($url, $text, $bgcolor = "red")
{
print(" ");
}
|