Changeset 535427
- Timestamp:
- 04/24/2012 01:40:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
syndicate-press/tags/1.0.12/syndicate-press-plugin.php
r535424 r535427 381 381 $inputCacheDirPerm = $this->sp_getFilePermissions($inputCacheDir); 382 382 $outputCacheDirPerm = $this->sp_getFilePermissions($outputCacheDir); 383 if($mainCacheDirPerm != "rwxr-xr-x" && $mainCacheDirPerm != " ")383 if($mainCacheDirPerm != "rwxr-xr-x" && $mainCacheDirPerm != "---------") 384 384 { 385 385 $permProblem .= "Main cache: $mainCacheDirPerm<br>"; 386 386 } 387 if($inputCacheDirPerm != "rwxr-xr-x" && $inputCacheDirPerm != " ")387 if($inputCacheDirPerm != "rwxr-xr-x" && $inputCacheDirPerm != "---------") 388 388 { 389 389 $permProblem .= "Input cache: $inputCacheDirPerm<br>"; 390 390 } 391 if($outputCacheDirPerm != "rwxr-xr-x" && $outputCacheDirPerm != " ")391 if($outputCacheDirPerm != "rwxr-xr-x" && $outputCacheDirPerm != "---------") 392 392 { 393 393 $permProblem .= "Output cache: $outputCacheDirPerm<br>"; … … 395 395 if($permProblem) 396 396 { 397 $permProblem = "There isa problem with your cache permissions:<br>$permProblem<br>Please set your cache permissions to rwxr-xr-x.";397 $permProblem = "There may be a problem with your cache permissions:<br>$permProblem<br>Please set your cache permissions to rwxr-xr-x."; 398 398 } 399 399 return $permProblem;
Note: See TracChangeset
for help on using the changeset viewer.