progress-bar

This commit is contained in:
xiaomlove
2021-03-16 21:12:27 +08:00
parent 6cd63a1791
commit a17c573be0
5 changed files with 238 additions and 5 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 {