Default to http.

This commit is contained in:
Ermal Lui 2010-03-05 17:12:15 +00:00
parent 06f619150f
commit eb0f4fc69e

View File

@ -690,7 +690,10 @@ function system_webgui_start() {
$res = mwexec("/usr/local/sbin/lighttpd -f {$g['varetc_path']}/lighty-webConfigurator.conf");
/* fetch page to preload apc cache */
mwexec("fetch -o /dev/null -q {$config['system']['webgui']['protocol']}://localhost:{$portarg}/preload.php");
$proto = "http";
if ($config['system']['webgui']['protocol'])
$proto = $config['system']['webgui']['protocol'];
mwexec("/usr/bin/fetch -o /dev/null -q {$proto}://localhost:{$portarg}/preload.php");
if ($g['booting']) {
if ($res == 0)