From: Jakub Vrana Date: Sun, 24 Oct 2010 09:43:03 +0000 (+0200) Subject: Show hash columns X-Git-Tag: v3.1.0~35 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=8aeb9be7910ff943b3fc4be0ba4ad1f50734351e;p=adminer.git Show hash columns --- diff --git a/editor/example.php b/editor/example.php index b392a77f..e15807d8 100644 --- a/editor/example.php +++ b/editor/example.php @@ -30,7 +30,7 @@ function adminer_object() { function fieldName($field, $order = 0) { // only columns with comments will be displayed and only the first five in select - return ($order <= 5 && !ereg('_(md5|sha1)$', $field["field"]) ? h($field["comment"]) : ""); + return ($order <= 5 ? h($field["comment"]) : ""); } }