Fix closing parenthesis on prop method

This commit is contained in:
Daniel Berteaud 2017-07-27 18:05:00 +02:00
parent fd8f348ce1
commit 0718fc8b4a
1 changed files with 1 additions and 1 deletions

View File

@ -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";