|
|
@@ -19,16 +19,8 @@
|
|
|
*/
|
|
|
$ds = DIRECTORY_SEPARATOR;
|
|
|
$dispatcher = 'Cake' . $ds . 'Console' . $ds . 'ShellDispatcher.php';
|
|
|
-$found = false;
|
|
|
-$paths = explode(PATH_SEPARATOR, ini_get('include_path'));
|
|
|
|
|
|
-foreach ($paths as $path) {
|
|
|
- if (file_exists($path . $ds . $dispatcher)) {
|
|
|
- $found = $path;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-if (!$found && function_exists('ini_set')) {
|
|
|
+if (function_exists('ini_set')) {
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
|
ini_set('include_path', $root . $ds. 'lib' . PATH_SEPARATOR . ini_get('include_path'));
|
|
|
}
|
|
|
@@ -36,6 +28,6 @@ if (!$found && function_exists('ini_set')) {
|
|
|
if (!include($dispatcher)) {
|
|
|
trigger_error('Could not locate CakePHP core files.', E_USER_ERROR);
|
|
|
}
|
|
|
-unset($paths, $path, $found, $dispatcher, $root, $ds);
|
|
|
+unset($paths, $path, $dispatcher, $root, $ds);
|
|
|
|
|
|
return ShellDispatcher::run($argv);
|