mirror of
https://github.com/vrana/adminer.git
synced 2026-01-03 22:31:08 +01:00
Distinguish no column order in fieldName
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@955 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -29,8 +29,8 @@ function adminer_object() {
|
||||
}
|
||||
|
||||
function fieldName($field, $order = 0) {
|
||||
// only first five columns with comments will be displayed
|
||||
return ($order < 5 ? h($field["comment"]) : "");
|
||||
// only columns with comments will be displayed and only the first five in select
|
||||
return ($order <= 5 ? h($field["comment"]) : "");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user