From: Jakub Vrana Date: Fri, 29 Jun 2012 17:29:46 +0000 (-0700) Subject: Unhighlight Binlog Dump in process list X-Git-Tag: v3.4.0~13 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=6ca4082e6c235ddf759d2d329a42781f96a651b0;p=adminer.git Unhighlight Binlog Dump in process list --- diff --git a/adminer/processlist.inc.php b/adminer/processlist.inc.php index 7753b36b..b751ea37 100644 --- a/adminer/processlist.inc.php +++ b/adminer/processlist.inc.php @@ -24,7 +24,7 @@ foreach (process_list() as $i => $row) { echo "" . (support("kill") ? "" . checkbox("kill[]", $row["Id"], 0) : ""); foreach ($row as $key => $val) { echo "" . ( - ($jush == "sql" && $key == "Info" && $val != "") || + ($jush == "sql" && $key == "Info" && $row["Command"] == "Query" && $val != "") || ($jush == "pgsql" && $key == "current_query" && $val != "") || ($jush == "oracle" && $key == "sql_text" && $val != "") ? "" . shorten_utf8($val, 100, "") . ' ' . lang('Edit') . ''