summaryrefslogtreecommitdiff
path: root/lib/file/delfld.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/file/delfld.php')
-rw-r--r--lib/file/delfld.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/file/delfld.php b/lib/file/delfld.php
new file mode 100644
index 0000000..c1cacf0
--- /dev/null
+++ b/lib/file/delfld.php
@@ -0,0 +1,16 @@
+<?php
+
+assert_redir(count($args) >= 3, 'file');
+$fldid = intval($args[2]);
+
+$fld = mysql_fetch_assoc(sql(
+ "SELECT id, name, comment, public, owner ".
+ "FROM folders WHERE id = $fldid"
+ ));
+assert_error($fld && $fld['owner'] == $user['id'],
+ "This folder does not exist, or you are not allowed to edit it.");
+
+token_validate("Do you really want to delete this folder ?", "folder-file-$fldid");
+sql("DELETE FROM folders WHERE id = $fldid");
+sql("UPDATE files SET folder = 0 WHERE folder = $fldid");
+header("location: file");