View file file/loads/cpre.php
<?php include 'constant.php'; $d = @opendir('small'); while($f = @readdir($d)) { if($f != '.' && $f != '..') { if(time() - filectime('small/'.$f) > IMAGE_DELETE_SECONDS) { unlink('small/'.$f); } } } @closedir($f); ?>
<?php include 'constant.php'; $d = @opendir('small'); while($f = @readdir($d)) { if($f != '.' && $f != '..') { if(time() - filectime('small/'.$f) > IMAGE_DELETE_SECONDS) { unlink('small/'.$f); } } } @closedir($f); ?>