From bbff78f0b0106bae1b2324d0bc986d5502205ddd Mon Sep 17 00:00:00 2001 From: Gabriel Baker Date: Tue, 14 May 2013 06:34:24 +0100 Subject: [PATCH] || --- PHPCI/Builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index 26017d86..4a85d0fd 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -193,7 +193,7 @@ class Builder protected function executePlugins($stage) { - if ( !array_key_exists($stage, $this->config) && !is_array($this->config[$stage]) ) { + if ( !array_key_exists($stage, $this->config) || !is_array($this->config[$stage]) ) { return; }