diff options
| author | cash <cash.costello@gmail.com> | 2011-12-08 18:52:49 -0500 | 
|---|---|---|
| committer | cash <cash.costello@gmail.com> | 2011-12-08 18:52:49 -0500 | 
| commit | e4067b9e9146de425dc391bbe3767a9ca3e4e602 (patch) | |
| tree | 282690f257414fc2c7adb19a6e2748658c29e71c | |
| parent | 57e3793a560b9b376b037d5bfe3f1aafaa90c78d (diff) | |
| download | elgg-e4067b9e9146de425dc391bbe3767a9ca3e4e602.tar.gz elgg-e4067b9e9146de425dc391bbe3767a9ca3e4e602.tar.bz2 | |
Fixes #4182 if simplecache is empty, the cache requests go through the engine and need to be white listed for the walled garden
| -rw-r--r-- | engine/classes/ElggSite.php | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/engine/classes/ElggSite.php b/engine/classes/ElggSite.php index 5c44d4076..3ccb146fb 100644 --- a/engine/classes/ElggSite.php +++ b/engine/classes/ElggSite.php @@ -424,7 +424,9 @@ class ElggSite extends ElggEntity {  			'xml-rpc\.php',  			'mt/mt-xmlrpc\.cgi',  			'css/.*', -			'js/.*' +			'js/.*', +			'cache/css/.*', +			'cache/js/.*',  		);  		// include a hook for plugin authors to include public pages | 
