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

Move whitespace to CSS

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1189 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2009-10-13 19:43:33 +00:00
parent 32d5b9ccb6
commit 50881f8942
4 changed files with 5 additions and 13 deletions

View File

@@ -56,7 +56,7 @@ function select($result, $connection2 = null) {
} elseif (!strlen($val)) {
$val = " "; // some content to print a border
} else {
$val = whitespace(h($val));
$val = h($val);
if ($types[$key] == 254) {
$val = "<code>$val</code>";
}
@@ -188,7 +188,7 @@ if ($type == "PROCEDURE") {
echo "&nbsp;<input type='image' name='drop_col[$i]' src='../adminer/static/cross.gif' alt='x' title='" . lang('Remove') . "' onclick='return !editing_remove_row(this);'>";
echo "&nbsp;<input type='image' name='up[$i]' src='../adminer/static/up.gif' alt='^' title='" . lang('Move up') . "'>";
echo "&nbsp;<input type='image' name='down[$i]' src='../adminer/static/down.gif' alt='v' title='" . lang('Move down') . "'>";
echo "\n\n";
echo "\n";
}
return $column_comments;
}