Skip to content

Commit d13424d

Browse files
committed
Changed $conf['country'] to $conf['language'] in client and reseller form file.
1 parent a0196e3 commit d13424d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interface/web/client/form/client.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
'datatype' => 'VARCHAR',
221221

222222
'formtype' => 'SELECT',
223-
'default' => (isset($conf["country"]) ? $conf["country"] : ''),
223+
'default' => (isset($conf['language']) ? $conf['language'] : ''),
224224
'datasource' => array ( 'type' => 'SQL',
225225
'querystring' => 'SELECT iso,printable_name FROM country ORDER BY printable_name',
226226
'keyfield'=> 'iso',

interface/web/client/form/reseller.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
'datatype' => 'VARCHAR',
221221

222222
'formtype' => 'SELECT',
223-
'default' => (isset($conf["country"]) ? $conf["country"] : ''),
223+
'default' => (isset($conf['language']) ? $conf['language'] : ''),
224224
'datasource' => array ( 'type' => 'SQL',
225225
'querystring' => 'SELECT iso,printable_name FROM country ORDER BY printable_name',
226226
'keyfield'=> 'iso',

0 commit comments

Comments
 (0)