]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
Add check if clean_rm_file
authorJerome Jutteau <mojo@couak.net>
Mon, 29 Jul 2013 20:03:41 +0000 (20:03 +0000)
committerJerome Jutteau <mojo@couak.net>
Mon, 29 Jul 2013 20:03:41 +0000 (20:03 +0000)
lib/functions.php

index a8851aac6fb1c60c209fe3e981d8668851d87108..1ad0e5241a205252dd1857a04bc6f15fba4e041c 100755 (executable)
@@ -122,10 +122,11 @@ function
 jirafeau_clean_rm_file ($md5)
 {
     $p = s2p ("$md5");
-    if (file_exists (VAR_FILES . $p . $md5))
-        unlink (VAR_FILES . $p . $md5);
-    if (file_exists (VAR_FILES . $p . $md5 . '_count'))
-        unlink (VAR_FILES . $p . $md5 . '_count');
+    $f = VAR_FILES . $p . $md5;
+    if (file_exists ($f) && is_file ($f))
+        unlink ($f);
+    if (file_exists ($f . '_count') && is_file ($f . '_count'))
+        unlink ($f . '_count');
     $parse = VAR_FILES . $p;
     $scan = array();
     while (file_exists ($parse)

patrick-canterino.de