Searched refs:limit (Results 1 – 3 of 3) sorted by relevance
/web-bugs/www/ |
H A D | search.php | 78 'limit' => $limit, 122 <?php show_prev_next($begin, $rows, $total_rows, $link, $limit);?> 200 show_prev_next($begin, $rows, $total_rows, $link, $limit); 226 <select name="limit"><?php show_limit_options($limit);?></select> 228 <select name="order_by"><?php show_order_options($limit);?></select> 368 function show_prev_next($begin, $rows, $total_rows, $link, $limit) argument 374 if ($limit=='All') { 384 echo max(0, $begin - $limit); 385 echo '">« Show Previous ' . $limit . ' Entries</a>'; 396 echo '<a href="' . $link . '&begin=' . ($begin+$limit); [all …]
|
/web-bugs/include/ |
H A D | query.php | 44 $limit = (defined('MAX_BUGS_RETURN')) ? MAX_BUGS_RETURN : 30; variable 47 …$limit = ($_GET['limit'] == 'All') ? 'All' : (($_GET['limit'] > 0) ? (int) $_GET['limit'] : $limit… variable 266 if ($limit != 'All' && $limit > 0) { 267 $query .= " LIMIT $begin, $limit";
|
H A D | functions.php | 435 * @param int $limit the presently selected limit to be used as the default 439 function show_limit_options($limit = 30) argument 443 if ($limit == $i) { 450 if ($limit == 'All') {
|
Completed in 10 milliseconds