mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Set a default port if the admin is just now upgrading header for the new port spec
This commit is contained in:
parent
ad9658f725
commit
bde5dcc84a
@ -371,7 +371,11 @@
|
||||
$setup_tpl->set_var('lang_delete',lang('Delete'));
|
||||
$setup_tpl->set_var('db_domain',$key);
|
||||
$setup_tpl->set_var('db_host',$GLOBALS['phpgw_domain'][$key]['db_host']);
|
||||
$setup_tpl->set_var('db_port',$GLOBALS['phpgw_domain'][$key]['db_port']);
|
||||
/* Set default here if the admin didn't set a port yet */
|
||||
$setup_tpl->set_var('db_port',$GLOBALS['phpgw_domain'][$key]['db_port']
|
||||
? $GLOBALS['phpgw_domain'][$key]['db_port']
|
||||
: @$default_db_ports[$GLOBALS['phpgw_domain'][$key]['db_type']]
|
||||
);
|
||||
$setup_tpl->set_var('db_name',$GLOBALS['phpgw_domain'][$key]['db_name']);
|
||||
$setup_tpl->set_var('db_user',$GLOBALS['phpgw_domain'][$key]['db_user']);
|
||||
$setup_tpl->set_var('db_pass',$GLOBALS['phpgw_domain'][$key]['db_pass']);
|
||||
|
Loading…
Reference in New Issue
Block a user