From b325dca7428a80753fe26cb86d2a27918cb396b4 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Fri, 24 Jul 2009 02:04:52 +0000 Subject: [PATCH] fix unmerged syntax fix --- ext/phar/phar/pharcommand.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/phar/phar/pharcommand.inc b/ext/phar/phar/pharcommand.inc index bae6aae8f0..9a111b8d83 100755 --- a/ext/phar/phar/pharcommand.inc +++ b/ext/phar/phar/pharcommand.inc @@ -217,7 +217,7 @@ class PharCommand extends CLICommand $pear = false; foreach ($path as $component) { if (file_exists($component . DIRECTORY_SEPARATOR . 'pear') - && is_executable($component . DIRECTORY_SEPARATOR . 'pear'))) { + && is_executable($component . DIRECTORY_SEPARATOR . 'pear')) { $pear = true; break; } -- 2.50.1