attendance ranking

This commit is contained in:
xiaomlove
2022-04-17 21:54:25 +08:00
parent 1c9708f19b
commit e98c589cce
32 changed files with 38 additions and 35 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ $forumpostsperpage = $MAIN['postsperpage'];
$forumtopicsperpage_main = $MAIN['topicsperpage'];
$torrentsperpage_main = (int)$MAIN['torrentsperpage'];
$max_dead_torrent_time = $MAIN['max_dead_torrent_time'];
$maxusers = $MAIN['maxusers'];
$maxusers = (int)$MAIN['maxusers'];
$torrent_dir = $MAIN['torrent_dir'];
$iniupload_main = $MAIN['iniupload'];
$SITEEMAIL = $MAIN['SITEEMAIL'];
+2 -2
View File
@@ -5406,9 +5406,9 @@ function get_ip_location_from_geoip($ip)
function msgalert($url, $text, $bgcolor = "red")
{
print("<p><table border=\"0\" cellspacing=\"0\" cellpadding=\"10\"><tr><td style='border: none; padding: 10px; background: ".$bgcolor."'>\n");
print("<table border=\"0\" cellspacing=\"0\" cellpadding=\"10\"><tr><td style='border: none; padding: 10px; background: ".$bgcolor."'>\n");
print("<b><a href=\"".$url."\"><font color=\"white\">".$text."</font></a></b>");
print("</td></tr></table></p><br />");
print("</td></tr></table><br />");
}
function build_medal_image(\Illuminate\Support\Collection $medals, $maxHeight = 200, $withActions = false): string