seed bonus add log etc

This commit is contained in:
xiaomlove
2025-09-08 03:05:55 +07:00
parent ae08039323
commit 60b5aba518
53 changed files with 720 additions and 131 deletions
+4 -3
View File
@@ -37,7 +37,8 @@ if ($passkey){
}
}
}
$searchstr = mysql_real_escape_string(trim($_GET["search"] ?? ''));
//$searchstr = mysql_real_escape_string(trim($_GET["search"] ?? ''));
$searchstr = null;//don't support search, use client self filter instead
if (empty($searchstr))
unset($searchstr);
if (isset($searchstr)){
@@ -81,8 +82,8 @@ if ($startindex) {
$limit .= $startindex.", ";
}
$showrows = intval($_GET['rows'] ?? 0);
if($showrows < 1 || $showrows > 200) {
$showrows = 10;
if($showrows < 1 || $showrows > 50) {
$showrows = 50;
}
$limit .= $showrows;