Skip to content

Commit

Permalink
Fixed coding standards in cake.php console in app/
Browse files Browse the repository at this point in the history
  • Loading branch information
predominant committed Apr 30, 2012
1 parent 9539023 commit ce5e602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/cake.php
Expand Up @@ -22,10 +22,10 @@

if (function_exists('ini_set')) {
$root = dirname(dirname(dirname(__FILE__)));
ini_set('include_path', $root . $ds. 'lib' . PATH_SEPARATOR . ini_get('include_path'));
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);
Expand Down

0 comments on commit ce5e602

Please sign in to comment.