projects
/
phppgadmin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb465a6
)
small warning fix about db lvl collation vars when creating DB on pg < 84
author
Guillaume (ioguix) de Rorthais
<ioguix@free.fr>
Sun, 13 Sep 2009 14:00:08 +0000
(10:00 -0400)
committer
Guillaume (ioguix) de Rorthais
<ioguix@free.fr>
Sun, 13 Sep 2009 14:00:08 +0000
(10:00 -0400)
all_db.php
patch
|
blob
|
blame
|
history
diff --git
a/all_db.php
b/all_db.php
index b2b515b38cadbac4978882e9a5d9453364473f7d..d074714a6f31e61f8f741c21ee3342f738938189 100644
(file)
--- a/
all_db.php
+++ b/
all_db.php
@@
-273,6
+273,12
@@
// Default comment to blank if it isn't set
if (!isset($_POST['formComment'])) $_POST['formComment'] = null;
+ // Default collate to blank if it isn't set
+ if (!isset($_POST['formCollate'])) $_POST['formCollate'] = null;
+
+ // Default ctype to blank if it isn't set
+ if (!isset($_POST['formCType'])) $_POST['formCType'] = null;
+
// Check that they've given a name and a definition
if ($_POST['formName'] == '') doCreate($lang['strdatabaseneedsname']);
else {