From f13efa8684addda91b14ab631cccb7a608d3b06c Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Thu, 23 Jul 2009 12:50:46 +0000 Subject: [PATCH] Use nbsp for empty cells git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@882 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- editor/include/adminer.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/include/adminer.inc.php b/editor/include/adminer.inc.php index ca6b1ed1..88d61132 100644 --- a/editor/include/adminer.inc.php +++ b/editor/include/adminer.inc.php @@ -103,7 +103,7 @@ function adminer_row_descriptions($rows, $foreign_keys) { function adminer_select_val($val, $link) { return call_adminer('select_val', ($link ? "$val" : - ($val == "NULL" ? "" : preg_replace('~^(.*)$~', '\\1', $val)) + ($val == "NULL" ? " " : preg_replace('~^(.*)$~', '\\1', $val)) ), $val, $link); }