Link last page above data in select

This commit is contained in:
Jakub Vrana 2010-06-10 16:02:51 +02:00
parent 9ef397aee1
commit f7069c7e5d
3 changed files with 3 additions and 1 deletions

View file

@ -123,7 +123,7 @@ document.getElementById('username').focus();
*/ */
function selectQuery($query) { function selectQuery($query) {
global $jush; global $jush;
return "<p><code class='jush-$jush'>" . h(str_replace("\n", " ", $query)) . "</code> <a href='" . h(ME) . "sql=" . urlencode($query) . "'>" . lang('Edit') . "</a>\n"; return "<p><a href='" . h(remove_from_uri("page")) . "&amp;page=last' title='" . lang('last') . "'>&gt;&gt;</a> <code class='jush-$jush'>" . h(str_replace("\n", " ", $query)) . "</code> <a href='" . h(ME) . "sql=" . urlencode($query) . "'>" . lang('Edit') . "</a>\n";
} }
/** Description of a row in a table /** Description of a row in a table

View file

@ -13,6 +13,7 @@ Autofocus username in login form
Disable spellchecking in SQL textareas Disable spellchecking in SQL textareas
Display auto_increment value of inserted item Display auto_increment value of inserted item
Allow disabling auto_increment value export Allow disabling auto_increment value export
Link last page above data in select
Link table names in SQL queries Link table names in SQL queries
Japanese translation Japanese translation
Defer table information in database overview to JavaScript (performance) Defer table information in database overview to JavaScript (performance)

View file

@ -57,6 +57,7 @@ document.getElementById('username').focus();
if (isset($set)) { if (isset($set)) {
echo '<p class="tabs"><a href="' . h(ME . 'edit=' . urlencode($TABLE) . $set) . '">' . lang('New item') . "</a>\n"; echo '<p class="tabs"><a href="' . h(ME . 'edit=' . urlencode($TABLE) . $set) . '">' . lang('New item') . "</a>\n";
} }
echo "<a href='" . h(remove_from_uri("page")) . "&amp;page=last' title='" . lang('last') . "'>&gt;&gt;</a>\n";
} }
function backwardKeys($table, $tableName) { function backwardKeys($table, $tableName) {