Marius Cramer
2015-05-07 5a56e6a9966a656796685494bf75902d01fae3df
Suppress errors on tmp_out array
1 files modified
4 ■■■■ changed files
install/install.php 4 ●●●● patch | view | raw | blame | history
install/install.php
@@ -171,7 +171,7 @@
//** Get the hostname
$tmp_out = array();
exec('hostname -f', $tmp_out);
$conf['hostname']=$tmp_out[0];
$conf['hostname'] = @$tmp_out[0];
unset($tmp_out);
//** Prevent empty hostname
$check = false;
@@ -869,4 +869,4 @@
echo "Installation completed.\n";
?>
?>