ソースを参照

Avoid noticed that TMP is defined. Can be possibly defined in cake.php

Simon Males 13 年 前
コミット
9c113247de
1 ファイル変更1 行追加1 行削除
  1. 1 1
      lib/Cake/Console/ShellDispatcher.php

+ 1 - 1
lib/Cake/Console/ShellDispatcher.php

@@ -123,7 +123,7 @@ class ShellDispatcher {
 		define('APP_DIR', $this->params['app']);
 		define('APP', $this->params['working'] . DS);
 		define('WWW_ROOT', APP . $this->params['webroot'] . DS);
-		if (!is_dir(ROOT . DS . APP_DIR . DS . 'tmp')) {
+		if (!is_dir(ROOT . DS . APP_DIR . DS . 'tmp') && !defined('TMP')) {
 			define('TMP', CAKE_CORE_INCLUDE_PATH . DS . 'Cake' . DS . 'Console' . DS . 'Templates' . DS . 'skel' . DS . 'tmp' . DS);
 		}
 		$boot = file_exists(ROOT . DS . APP_DIR . DS . 'Config' . DS . 'bootstrap.php');