From 4dfd37909ff192bb9779372500a8b53aa855eae4 Mon Sep 17 00:00:00 2001 From: Bryan Crowe Date: Thu, 3 Oct 2013 22:05:46 -0400 Subject: [PATCH] Fixed CS error --- app/Console/cake.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/cake.php b/app/Console/cake.php index ec6ee33c5..9c2751028 100644 --- a/app/Console/cake.php +++ b/app/Console/cake.php @@ -29,7 +29,7 @@ if (function_exists('ini_set')) { ini_set('include_path', $root . $ds . 'lib' . PATH_SEPARATOR . ini_get('include_path')); } -if (!include($dispatcher)) { +if (!include ($dispatcher)) { trigger_error('Could not locate CakePHP core files.', E_USER_ERROR); } unset($paths, $path, $dispatcher, $root, $ds);