mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Avoid noticed that TMP is defined. Can be possibly defined in cake.php
This commit is contained in:
parent
aee8b50507
commit
9c113247de
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class ShellDispatcher {
|
||||||
define('APP_DIR', $this->params['app']);
|
define('APP_DIR', $this->params['app']);
|
||||||
define('APP', $this->params['working'] . DS);
|
define('APP', $this->params['working'] . DS);
|
||||||
define('WWW_ROOT', APP . $this->params['webroot'] . 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);
|
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');
|
$boot = file_exists(ROOT . DS . APP_DIR . DS . 'Config' . DS . 'bootstrap.php');
|
||||||
|
|
Loading…
Reference in a new issue