You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-commits@perl.apache.org by st...@apache.org on 2016/11/01 08:06:04 UTC

svn commit: r1767444 - /perl/Apache-Test/trunk/lib/Apache/TestConfigPHP.pm

Author: stevehay
Date: Tue Nov  1 08:06:04 2016
New Revision: 1767444

URL: http://svn.apache.org/viewvc?rev=1767444&view=rev
Log:
Fix missing semicolon

Spotted by  eponymousalias@yahoo.com in CPAN RT#118578.

Modified:
    perl/Apache-Test/trunk/lib/Apache/TestConfigPHP.pm

Modified: perl/Apache-Test/trunk/lib/Apache/TestConfigPHP.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Test/trunk/lib/Apache/TestConfigPHP.pm?rev=1767444&r1=1767443&r2=1767444&view=diff
==============================================================================
--- perl/Apache-Test/trunk/lib/Apache/TestConfigPHP.pm (original)
+++ perl/Apache-Test/trunk/lib/Apache/TestConfigPHP.pm Tue Nov  1 08:06:04 2016
@@ -170,7 +170,7 @@ sub configure_php_ini {
     my $dir  = catfile $self->{vars}->{serverroot}, 'conf';
     my $file = catfile $dir, 'php.ini';
 
-    return if -e $file
+    return if -e $file;
 
     my $log  = catfile $self->{vars}->{t_logs}, 'error_log';