|
@@ -94,7 +94,7 @@ class File {
|
|
|
|
|
|
/**
|
|
|
* Extract the file extension from a file path.
|
|
|
- *
|
|
|
+ *
|
|
|
* @param string $path
|
|
|
* @return string
|
|
|
*/
|
|
@@ -273,8 +273,9 @@ class File {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if ($delete) rmdir($source);
|
|
|
-
|
|
|
+ unset($items);
|
|
|
+ if ($delete) @rmdir($source);
|
|
|
+
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -306,6 +307,7 @@ class File {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ unset($items);
|
|
|
if ( ! $preserve) @rmdir($directory);
|
|
|
}
|
|
|
|