summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-02-22 09:02:05 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-02-22 09:02:05 +0100
commit1f6db5384572c0096806dbdf31b33bc979077be1 (patch)
tree5811d0a299393b1927f5b45f1a5f1d2f8627d801 /lib/exe
parent6ffaeda954351208754898acc6e2ff228f3ae472 (diff)
parent900a9e9e56d360fa7d347304e9b0d4b691d4becc (diff)
downloadrpg-1f6db5384572c0096806dbdf31b33bc979077be1.tar.gz
rpg-1f6db5384572c0096806dbdf31b33bc979077be1.tar.bz2
Merge pull request #561 from splitbrain/dir_delete
replace dir_delete by io_rmdir
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/ajax.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/exe/ajax.php b/lib/exe/ajax.php
index 2cbcece5e..1000094bc 100644
--- a/lib/exe/ajax.php
+++ b/lib/exe/ajax.php
@@ -306,26 +306,6 @@ function ajax_mediaupload(){
echo htmlspecialchars($json->encode($result), ENT_NOQUOTES);
}
-function dir_delete($path) {
- if (!is_string($path) || $path == "") return false;
-
- if (is_dir($path) && !is_link($path)) {
- if (!$dh = @opendir($path)) return false;
-
- while ($f = readdir($dh)) {
- if ($f == '..' || $f == '.') continue;
- dir_delete("$path/$f");
- }
-
- closedir($dh);
- return @rmdir($path);
- } else {
- return @unlink($path);
- }
-
- return false;
-}
-
/**
* Return sub index for index view
*