Skip to content

Commit

Permalink
Update problemset.php
Browse files Browse the repository at this point in the history
zhblue authored Sep 28, 2023
1 parent 7e7ce8b commit bcbc045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk/web/problemset.php
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@
if (isset($_GET['search']) && trim($_GET['search'])!="") {
$search = "%".($_GET['search'])."%";
$filter_sql = " ( title like ? or source like ?)";
$filter_sql = " and A.ROWNUM >='" . strval($pstart) . "' AND A.ROWNUM < '". strval($pend) . "' ";
$filter_sql .= " and A.ROWNUM >='" . strval($pstart) . "' AND A.ROWNUM < '". strval($pend) . "' ";
//$pstart = 0;
//$pend = 100;
$postfix="&search=".urlencode($_GET['search']);

0 comments on commit bcbc045

Please sign in to comment.