diff --git a/adminer/processlist.inc.php b/adminer/processlist.inc.php index c37d105b..1025fccc 100644 --- a/adminer/processlist.inc.php +++ b/adminer/processlist.inc.php @@ -21,7 +21,7 @@ foreach (get_rows("SHOW FULL PROCESSLIST") as $i => $row) { } echo "" . checkbox("kill[]", $row["Id"], 0); foreach ($row as $key => $val) { - echo "" . ($key == "Info" ? "" . nbsp($val) . ' ' . lang('Edit') . '' : nbsp($val)); + echo "" . ($key == "Info" && $val != "" ? "" . nbsp($val) . ' ' . lang('Edit') . '' : nbsp($val)); } echo "\n"; }