mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-25 04:27:22 +08:00
seed bonus add log etc
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user