Skip to content
Snippets Groups Projects
Commit 7eade0da authored by Florian Schaal's avatar Florian Schaal
Browse files

avoid the second use of query in install.php

parent 14dff26f
No related branches found
No related tags found
No related merge requests found
...@@ -172,10 +172,11 @@ $install_mode = $inst->simple_query('Installation mode', array('standard', 'expe ...@@ -172,10 +172,11 @@ $install_mode = $inst->simple_query('Installation mode', array('standard', 'expe
$tmp_out = array(); $tmp_out = array();
exec('hostname -f', $tmp_out); exec('hostname -f', $tmp_out);
$conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg server1.domain.tld ', @$tmp_out[0],'hostname'); $conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg server1.domain.tld ', @$tmp_out[0],'hostname');
unset($tmp_out);
//** Prevent empty hostname //** Prevent empty hostname
$conf['hostname']=trim($conf['hostname']); $conf['hostname']=trim(@$tmp_out[0]);
unset($tmp_out);
if($conf['hostname'] === '') { if($conf['hostname'] === '') {
$check = false; $check = false;
do { do {
......
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