From: jakubvrana Date: Thu, 20 Mar 2008 12:50:35 +0000 (+0000) Subject: maxlength for decimal and float types (bug #1920166) X-Git-Tag: v3.0.0~1136 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=312a0667b19e40d64c5d81331435a3503a38b8c2;p=adminer.git 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 --- 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";