mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Fixed spaces with tabs for Core::getTempFolder()
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@113923 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
a9e611d721
commit
b7d7a86b51
@ -301,12 +301,13 @@ function getTempFolder($base = null) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$sysTmp = getSysTempDir();
|
$sysTmp = getSysTempDir();
|
||||||
|
|
||||||
$worked = true;
|
$worked = true;
|
||||||
$ssTmp = "$sysTmp/$cachefolder";
|
$ssTmp = "$sysTmp/$cachefolder";
|
||||||
|
|
||||||
if(!@file_exists($ssTmp)) {
|
if(!@file_exists($ssTmp)) {
|
||||||
@$worked = mkdir($ssTmp);
|
@$worked = mkdir($ssTmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$worked) {
|
if(!$worked) {
|
||||||
$ssTmp = BASE_PATH . "/silverstripe-cache";
|
$ssTmp = BASE_PATH . "/silverstripe-cache";
|
||||||
$worked = true;
|
$worked = true;
|
||||||
@ -314,6 +315,7 @@ function getTempFolder($base = null) {
|
|||||||
@$worked = mkdir($ssTmp);
|
@$worked = mkdir($ssTmp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$worked) {
|
if(!$worked) {
|
||||||
user_error("Permission problem gaining access to a temp folder. " .
|
user_error("Permission problem gaining access to a temp folder. " .
|
||||||
"Please create a folder named silverstripe-cache in the base folder " .
|
"Please create a folder named silverstripe-cache in the base folder " .
|
||||||
|
Loading…
Reference in New Issue
Block a user