Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
833369e7
Commit
833369e7
authored
Mar 20, 2012
by
tbrehm
Browse files
Added strtoupper for country setting.
parent
d13424d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/client/form/client.tform.php
View file @
833369e7
...
...
@@ -220,7 +220,7 @@ $form["tabs"]['address'] = array (
'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'
,
...
...
interface/web/client/form/reseller.tform.php
View file @
833369e7
...
...
@@ -220,7 +220,7 @@ $form["tabs"]['address'] = array (
'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'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment