From: Jakub Vrana Date: Tue, 29 Jun 2010 13:17:27 +0000 (+0200) Subject: Ability to jump to any page by JavaScript X-Git-Tag: v3.0.0~65 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=5a11c99e71eb884fa175488096a784938c677310;p=adminer.git Ability to jump to any page by JavaScript --- diff --git a/adminer/select.inc.php b/adminer/select.inc.php index ded22ef1..1711d6f1 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -362,7 +362,7 @@ if (!$columns) { if (intval($limit) && $found_rows > $limit) { // display first, previous 4, next 4 and last page $max_page = floor(($found_rows - 1) / $limit); - echo lang('Page') . ":" . pagination(0, $page) . ($page > 5 ? " ..." : ""); + echo '" . lang('Page') . ":" . pagination(0, $page) . ($page > 5 ? " ..." : ""); for ($i = max(1, $page - 4); $i < min($max_page, $page + 5); $i++) { echo pagination($i, $page); } diff --git a/changes.txt b/changes.txt index 0e78f32f..5e8733a1 100644 --- a/changes.txt +++ b/changes.txt @@ -14,6 +14,7 @@ Disable spellchecking in SQL textareas Display auto_increment value of inserted item Allow disabling auto_increment value export Prefill auto_increment column name +Ability to jump to any page by JavaScript Link last page above data in select Link table names in SQL queries Japanese translation