From 312a0667b19e40d64c5d81331435a3503a38b8c2 Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Thu, 20 Mar 2008 12:50:35 +0000 Subject: [PATCH] maxlength for decimal and float types (bug #1920166) git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@378 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- editing.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editing.inc.php b/editing.inc.php index 66492055..29d618f0 100644 --- a/editing.inc.php +++ b/editing.inc.php @@ -31,7 +31,7 @@ function input($name, $field, $value) { } elseif (preg_match('~binary|blob~', $field["type"])) { echo (ini_get("file_uploads") ? '' : lang('File uploads are disabled.') . ' '); } else { - echo ''; + echo ''; } if ($field["null"] && $field["type"] != "enum") { $id = "null-$name";