Skip to content

Commit

Permalink
Fixed: Bareword "stdout" not allowed while "strict subs" in use at /u…
Browse files Browse the repository at this point in the history
…sr/local/src/imscp/engine/PerlLib/Servers/httpd/apache_itk.pm line 1701
  • Loading branch information
nuxwin committed Oct 18, 2013
1 parent 937bfda commit 6967a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/PerlLib/Servers/httpd/apache_itk.pm
Expand Up @@ -1698,7 +1698,7 @@ sub restart
warning($stderr) if $stderr && ! $rs;
error($stderr) if $stderr && $rs;
error($stdout) if $stdout && ! $stderr && $rs;
error("Error while " . ($self->{'forceRestart'} ? 'restarting' : 'reloading')) if $rs && ! $stderr && !stdout;
error("Error while " . ($self->{'forceRestart'} ? 'restarting' : 'reloading')) if $rs && ! $stderr && ! $stdout;
return $rs if $rs;

$self->{'hooksManager'}->trigger('afterHttpdRestart');
Expand Down

0 comments on commit 6967a38

Please sign in to comment.