MINOR Fixed spaces with tabs for Core::getTempFolder() (from r113923)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@114539 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-12-05 08:37:15 +00:00
parent 68747773ae
commit 567c0b4939

View File

@ -296,31 +296,33 @@ function getTempFolder($base = null) {
} }
$ssTmp = BASE_PATH . "/silverstripe-cache"; $ssTmp = BASE_PATH . "/silverstripe-cache";
if(@file_exists($ssTmp)) { if(@file_exists($ssTmp)) {
return $ssTmp; return $ssTmp;
} }
$sysTmp = getSysTempDir(); $sysTmp = getSysTempDir();
$worked = true;
$ssTmp = "$sysTmp/$cachefolder";
$worked = true; if(!@file_exists($ssTmp)) {
$ssTmp = "$sysTmp/$cachefolder"; @$worked = mkdir($ssTmp);
if(!@file_exists($ssTmp)) { }
@$worked = mkdir($ssTmp);
}
if(!$worked) {
$ssTmp = BASE_PATH . "/silverstripe-cache";
$worked = true;
if(!@file_exists($ssTmp)) {
@$worked = mkdir($ssTmp);
}
}
if(!$worked) {
user_error("Permission problem gaining access to a temp folder. " .
"Please create a folder named silverstripe-cache in the base folder " .
"of the installation and ensure it has the correct permissions", E_USER_ERROR);
}
return $ssTmp; if(!$worked) {
$ssTmp = BASE_PATH . "/silverstripe-cache";
$worked = true;
if(!@file_exists($ssTmp)) {
@$worked = mkdir($ssTmp);
}
}
if(!$worked) {
user_error("Permission problem gaining access to a temp folder. " .
"Please create a folder named silverstripe-cache in the base folder " .
"of the installation and ensure it has the correct permissions", E_USER_ERROR);
}
return $ssTmp;
} }
/** /**