- fix access-log filename in lighttpd cron, fixes #77

This commit is contained in:
Michael Kaufmann (d00p)
2010-03-20 12:51:39 +00:00
parent 402e8620a9
commit f76df2252d

View File

@@ -340,7 +340,7 @@ class lighttpd
chown($access_log, $this->settings['system']['httpuser']);
chgrp($access_log, $this->settings['system']['httpgroup']);
$logfiles_text.= ' accesslog.filename = "' . $filename . '"' . "\n";
$logfiles_text.= ' accesslog.filename = "' . $access_log . '"' . "\n";
}
return $logfiles_text;