From 1eea62a36115667dbbcb617504f9a372b33516da Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 14 Sep 2007 02:10:14 +0000 Subject: [PATCH] mujma: ENHANCEMENTS: Folder _tmp has been added to list of ignored folders.Change depends on r38765 in cms branch. (merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@41721 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- filesystem/Folder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/filesystem/Folder.php b/filesystem/Folder.php index 5dc2654d5..2293b445c 100755 --- a/filesystem/Folder.php +++ b/filesystem/Folder.php @@ -106,6 +106,7 @@ class Folder extends File { if($actualChild[0] == '.') continue; // ignore hidden files if(substr($actualChild,0,6) == 'Thumbs') continue; // ignore windows cache stuff if($actualChild == '_resampled') continue; // ignore the resampled copies of images + if($actualChild == '_tmp') continue; // ignore tmp folder for PhotoEditor. // A record with a bad class type doesn't deserve to exist. It must be purged!