git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@955
7c3ca157-0c34-0410-bff1-
cbf682f78f5c
echo "<thead><tr><td><input type='checkbox' id='all-page' onclick='form_check(this, /check/);'>";
$names = array();
reset($select);
- $order = 0;
+ $order = 1;
foreach ($rows[0] as $key => $val) {
$val = $_GET["columns"][key($select)];
$field = $fields[$select ? $val["col"] : $key];
}
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"]) : "");
}
}