From 833369e7a35190e31d25e2722a608d545590ae72 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 20 Mar 2012 06:55:00 -0400 Subject: [PATCH] Added strtoupper for country setting. --- interface/web/client/form/reseller.tform.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/interface/web/client/form/reseller.tform.php b/interface/web/client/form/reseller.tform.php index 550004c..77e2f54 100644 --- a/interface/web/client/form/reseller.tform.php +++ b/interface/web/client/form/reseller.tform.php @@ -220,7 +220,7 @@ 'datatype' => 'VARCHAR', 'formtype' => 'SELECT', - 'default' => (isset($conf['language']) ? $conf['language'] : ''), + 'default' => (isset($conf['language']) ? strtoupper($conf['language']) : ''), 'datasource' => array ( 'type' => 'SQL', 'querystring' => 'SELECT iso,printable_name FROM country ORDER BY printable_name', 'keyfield'=> 'iso', -- Gitblit v1.9.1