From 0718fc8b4abb10e77cdbc91bcd59422033a89d0e Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 27 Jul 2017 18:05:00 +0200 Subject: [PATCH] Fix closing parenthesis on prop method --- .../e-smith/templates/etc/httpd/conf/httpd.conf/68FastCGIConfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/68FastCGIConfig b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/68FastCGIConfig index 9b2e114..641810a 100644 --- a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/68FastCGIConfig +++ b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/68FastCGIConfig @@ -30,7 +30,7 @@ _EOF $OUT .= "# Shared Folders\n"; foreach my $share ($a->get_all_by_prop(type => 'share')){ - next if ($share->prop('DynamicContent' || 'disabled') ne 'enabled'); + next if (($share->prop('DynamicContent') || 'disabled') ne 'enabled'); my $key = $share->key; my $ver = $share->prop('PHPVersion') || ''; my $socket = "php$ver-$key.sock";