]> git.pld-linux.org Git - packages/cakephp.git/blame - config.patch
- allow LOGS/CACHE constants from application side
[packages/cakephp.git] / config.patch
CommitLineData
212f2750
ER
1--- cake_1.2.1.8004/cake/config/paths.php~ 2009-11-16 18:02:02.000000000 +0200
2+++ cake_1.2.1.8004/cake/config/paths.php 2009-11-17 17:48:12.232914111 +0200
3@@ -156,11 +156,15 @@
4 /**
5 * Path to the logs directory.
6 */
7+if (!defined('LOGS')) {
8 define('LOGS', TMP.'logs'.DS);
9+}
10 /**
11 * Path to the cache files directory. It can be shared between hosts in a multi-server setup.
12 */
13+if (!defined('CACHE')) {
14 define('CACHE', TMP.'cache'.DS);
15+}
16 /**
17 * Path to the vendors directory.
18 */
This page took 0.058359 seconds and 4 git commands to generate.