From 3a3cb5f4551802ffb08626d3fecf538836cc980b Mon Sep 17 00:00:00 2001 From: "Florian Aders (EleRas)" Date: Wed, 27 Jan 2010 19:42:48 +0000 Subject: [PATCH] Fixing specialsetting for lighttpd --- scripts/jobs/cron_tasks.inc.http.20.lighttpd.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/jobs/cron_tasks.inc.http.20.lighttpd.php b/scripts/jobs/cron_tasks.inc.http.20.lighttpd.php index 704e7ce2..c30ae399 100644 --- a/scripts/jobs/cron_tasks.inc.http.20.lighttpd.php +++ b/scripts/jobs/cron_tasks.inc.http.20.lighttpd.php @@ -252,6 +252,9 @@ class lighttpd $vhost_content.= $this->getServerNames($domain) . " {\n"; $vhost_content.= $this->getWebroot($domain, $ssl_vhost); + if ($domain['specialsettings'] != "") { + $vhost_content.= $domain['specialsettings'] . "\n"; + } $vhost_content.= $this->create_htaccess($domain); $vhost_content.= $this->create_pathOptions($domain); $vhost_content.= $this->composePhpOptions($domain);