Browse Source

Make JS,CSS,IMAGES conditionally defined.

This allows app's to redefine these constants as necessary.
This makes these constants consistent with their *_URL relatives.
Fixes #GH-1170
mark_story 13 years ago
parent
commit
3a06dc5e1c
1 changed files with 6 additions and 0 deletions
  1. 6 0
      lib/Cake/bootstrap.php

+ 6 - 0
lib/Cake/bootstrap.php

@@ -62,17 +62,23 @@ if (!defined('APP')) {
 /**
  * Path to the public CSS directory.
  */
+if (!defined('CSS')) {
 	define('CSS', WWW_ROOT . 'css' . DS);
+}
 
 /**
  * Path to the public JavaScript directory.
  */
+if (!defined('JS')) {
 	define('JS', WWW_ROOT . 'js' . DS);
+}
 
 /**
  * Path to the public images directory.
  */
+if (!defined('IMAGES')) {
 	define('IMAGES', WWW_ROOT . 'img' . DS);
+}
 
 /**
  * Path to the tests directory.