From 0f763de1acf14e599910ef931e9c928e97798d18 Mon Sep 17 00:00:00 2001 From: dave Date: Thu, 5 Feb 2009 09:14:41 +0000 Subject: [PATCH] - Add a 'language' input type to the config editor - Change config[default_language] type to langauge, no more people messing it up by typing in "English" or "American". --- config_editor.inc.php | 8 ++++++++ db/db.code.version.txt | 2 +- db/db.update.123.sql | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 db/db.update.123.sql diff --git a/config_editor.inc.php b/config_editor.inc.php index a3a8ae5a..95098823 100644 --- a/config_editor.inc.php +++ b/config_editor.inc.php @@ -296,6 +296,14 @@ function config_editor($category, $year, $array_name, $self) if($c > 5) print(""); break; + case 'language': + print(""); + break; default: print("\n"); diff --git a/db/db.code.version.txt b/db/db.code.version.txt index 9f54fe31..190a1803 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -122 +123 diff --git a/db/db.update.123.sql b/db/db.update.123.sql new file mode 100644 index 00000000..8f042ef0 --- /dev/null +++ b/db/db.update.123.sql @@ -0,0 +1,3 @@ +ALTER TABLE `config` CHANGE `type` `type` ENUM( '', 'yesno', 'number', 'text', 'enum', 'multisel', 'language' ) NOT NULL ; + +UPDATE config SET `type`='language' WHERE `var`='default_language';