Missing semicolon

tags/0.1.8_el5 0.1.8_el5
Daniel Berteaud 8 years ago
parent 152c1d08f1
commit 6e9820bfd6
  1. 5
      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
</Directory>
END
if ($alias ne ''){
$OUT .=<<'END';
<LocationMatch "^/limesurvey/(index\.php/)?admin">
@ -45,6 +46,7 @@ if ($alias ne ''){
$auth
</LocationMatch>
END
}
$OUT .=<<'END';
<DirectoryMatch "/usr/share/limesurvey/(framework|console|installer/sql|locale|application/(logs|config)|docs)">
@ -52,6 +54,7 @@ $OUT .=<<'END';
</DirectoryMatch>
END
}
else{
$OUT .= "# LimeSurvey is disabled\n";

Loading…
Cancel
Save