1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-18 12:21:24 +02:00

Don't wrap select results

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@669 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2009-06-11 14:58:07 +00:00
parent e59735ecf6
commit be8f88ebd8

View File

@@ -157,7 +157,7 @@ function select($result, $dbh2 = null) {
if (!$result->num_rows) { if (!$result->num_rows) {
echo "<p class='message'>" . lang('No rows.') . "</p>\n"; echo "<p class='message'>" . lang('No rows.') . "</p>\n";
} else { } else {
echo "<table cellspacing='0'>\n"; echo "<table cellspacing='0' class='nowrap'>\n";
$links = array(); $links = array();
$indexes = array(); $indexes = array();
$columns = array(); $columns = array();