Merge remote-tracking branch 'refs/remotes/origin/php8' into php8

This commit is contained in:
xiaomlove
2021-03-16 23:29:26 +08:00
5 changed files with 89 additions and 8 deletions
+7 -3
View File
@@ -1086,12 +1086,16 @@ elseif($inclbookmarked == 2)
}
if ($count) {
$rows = [];
while ($row = mysql_fetch_assoc($res)) {
$rows[] = $row;
}
print($pagertop);
if ($sectiontype == $browsecatmode)
torrenttable($res, "torrents");
torrenttable($rows, "torrents");
elseif ($sectiontype == $specialcatmode)
torrenttable($res, "music");
else torrenttable($res, "bookmarks");
torrenttable($rows, "music");
else torrenttable($rows, "bookmarks");
print($pagerbottom);
}
else {