Minor - update function name

skala
Yannick Warnier 14 years ago
parent b751923039
commit 49f14b2893
  1. 6
      main/cron/cleanup.php

@ -9,7 +9,7 @@ foreach($list as $item) {
$stat = @stat($a_dir.'/'.$item); $stat = @stat($a_dir.'/'.$item);
if ($stat === false) { error_log('Cron task cannot stat '.$a_dir.'/'.$item); continue; } if ($stat === false) { error_log('Cron task cannot stat '.$a_dir.'/'.$item); continue; }
if ($stat['mtime'] > $t) { //if the file is older than one week, delete if ($stat['mtime'] > $t) { //if the file is older than one week, delete
recursiveDelete($a_dir.'/'.$item); recursive_delete($a_dir.'/'.$item);
} }
} }
@ -18,14 +18,14 @@ foreach($list as $item) {
* *
* @param string $str Path to file or directory * @param string $str Path to file or directory
*/ */
function recursiveDelete($str){ function recursive_delete($str){
if(is_file($str)){ if(is_file($str)){
return @unlink($str); return @unlink($str);
} }
elseif(is_dir($str)){ elseif(is_dir($str)){
$scan = glob(rtrim($str,'/').'/*'); $scan = glob(rtrim($str,'/').'/*');
foreach($scan as $index=>$path){ foreach($scan as $index=>$path){
recursiveDelete($path); recursive_delete($path);
} }
return @rmdir($str); return @rmdir($str);
} }

Loading…
Cancel
Save