From 6e9820bfd6ab24d4a785dada5e0047572849aaa9 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Sun, 11 Dec 2016 21:02:43 +0100 Subject: [PATCH] Missing semicolon --- .../e-smith/templates/etc/httpd/conf/httpd.conf/98LimeSurvey | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98LimeSurvey b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98LimeSurvey index ff31339..96f6ab3 100644 --- a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98LimeSurvey +++ b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98LimeSurvey @@ -11,7 +11,7 @@ my $auth = (($limesurvey{'Authentication'} || 'http') eq 'http') ? "AuthName \"L if ($limesurvey{'status'} eq 'enabled'){ -$OUT .=<<"END" +$OUT .=<<"END"; # LimeSurvey Configuration $alias @@ -38,6 +38,7 @@ $alias Satisfy all END + if ($alias ne ''){ $OUT .=<<'END'; @@ -45,6 +46,7 @@ if ($alias ne ''){ $auth END + } $OUT .=<<'END'; @@ -52,6 +54,7 @@ $OUT .=<<'END'; END + } else{ $OUT .= "# LimeSurvey is disabled\n";