From 8aeb9be7910ff943b3fc4be0ba4ad1f50734351e Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 24 Oct 2010 11:43:03 +0200 Subject: [PATCH] Show hash columns --- editor/example.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]) : ""); } }