Skip to content
Snippets Groups Projects
Commit 356726f6 authored by Till Brehm's avatar Till Brehm
Browse files

Update client.tform.php

parent eca5dcc5
No related branches found
No related tags found
No related merge requests found
......@@ -318,7 +318,7 @@ $form["tabs"]['address'] = array (
'country' => array (
'datatype' => 'VARCHAR',
'formtype' => 'SELECT',
'default' => ($conf['default_country'] ?? strtoupper($conf['language'] ?? '')),
'default' => (isset($conf['default_country'])) ? strtoupper($conf['default_country']) : ((isset($conf['language'])) ? strtoupper($conf['language']) : ''),
'datasource' => array ( 'type' => 'SQL',
'querystring' => 'SELECT iso,printable_name FROM country ORDER BY printable_name ASC',
'keyfield' => 'iso',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment