BUGFIX: check the $removeAll var before removing cache files. PATCH via ajshort (#5672)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@107095 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Will Rossiter 2010-06-26 05:17:48 +00:00 committed by Sam Minnee
parent fec50572e9
commit 66ae6d0c82
1 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,9 @@ class RebuildStaticCacheTask extends Controller {
/**
* Rebuilds the static cache for the pages passed through via $urls
*
* @param array $urls The URLs of pages to re-fetch and cache.
* @param bool $removeAll Remove all stale cache files (default TRUE).
*/
function rebuildCache($urls, $removeAll = true) {
@ -82,7 +84,7 @@ class RebuildStaticCacheTask extends Controller {
$urls = array_slice($urls, $start, $count);
if(!isset($_GET['urls']) && $start == 0 && file_exists("../cache")) {
if($removeAll && !isset($_GET['urls']) && $start == 0 && file_exists("../cache")) {
echo "Removing stale cache files... \n";
flush();
if (FilesystemPublisher::$domain_based_caching) {