From ba5e7a1b53b4fa0f01600ed612f9c2275b9f9b67 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 17 Apr 2013 17:57:14 -0700 Subject: [PATCH] Link processlist documentation --- adminer/processlist.inc.php | 9 ++++++++- changes.txt | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/adminer/processlist.inc.php b/adminer/processlist.inc.php index 39832da0..e977b159 100644 --- a/adminer/processlist.inc.php +++ b/adminer/processlist.inc.php @@ -19,7 +19,14 @@ page_header(lang('Process list'), $error); $i = -1; foreach (process_list() as $i => $row) { if (!$i) { - echo "" . (support("kill") ? " " : "") . "" . implode("", array_keys($row)) . "\n"; + echo "" . (support("kill") ? " " : ""); + foreach ($row as $key => $val) { + echo "" . ($jush == "sql" + ? "$key" + : $key + ); + } + echo "\n"; } echo "" . (support("kill") ? "" . checkbox("kill[]", $row["Id"], 0) : ""); foreach ($row as $key => $val) { diff --git a/changes.txt b/changes.txt index 1c2e5806..2fc32224 100644 --- a/changes.txt +++ b/changes.txt @@ -5,17 +5,18 @@ Display SQL edit form on Ctrl+click on the select query Display SQL history from oldest Recover original view, trigger, routine if creating fails Selectable ON UPDATE CURRENT_TIMESTAMP field in create table +Open database to a new window after selecting it with Ctrl Clear column name after resetting search (bug #3601200) Explain partitions in SQL query (bug #3600150) Allow loading more data with inline edit (bug #3605531) Stay on the same page after deleting rows (bug #3605845) Respect checked tables in export filename (bug #3245464) Respect PHP configuration max_input_vars -Open database to a new window after selecting it with Ctrl Disable autocapitalize in identifiers on mobile browsers MySQL: Compatibility with MySQL 5.6 MySQL: Move ALTER export to plugin MySQL: Use numeric time zone in export +MySQL: Link processlist documentation SQLite: Export indexes Adminer 3.6.3 (released 2013-01-23):