Skip to content

Commit

Permalink
Ability to jump to any page by JavaScript
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Jul 1, 2010
1 parent 07fd522 commit 5a11c99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/select.inc.php
Expand Up @@ -362,7 +362,7 @@
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 '<a href="' . h(remove_from_uri("page")) . "\" onclick=\"var page = +prompt('" . lang('Page') . "', '" . ($page + 1) . "'); if (!isNaN(page) &amp;&amp; page) location.href = this.href + (page != 1 ? '&amp;page=' + (page - 1) : ''); return false;\">" . lang('Page') . "</a>:" . pagination(0, $page) . ($page > 5 ? " ..." : "");
for ($i = max(1, $page - 4); $i < min($max_page, $page + 5); $i++) {
echo pagination($i, $page);
}
Expand Down
1 change: 1 addition & 0 deletions changes.txt
Expand Up @@ -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
Expand Down

0 comments on commit 5a11c99

Please sign in to comment.