summaryrefslogtreecommitdiff
path: root/lib/image/rename.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/image/rename.php')
-rw-r--r--lib/image/rename.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/image/rename.php b/lib/image/rename.php
deleted file mode 100644
index 0fbc442..0000000
--- a/lib/image/rename.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-require("lib/conf/image.php");
-
-$title = "Rename an image";
-
-if (count($args) < 3) header("location: index.php");
-$id = intval($args[2]);
-
-$info = mysql_fetch_assoc(sql("SELECT * FROM images WHERE id = $id"));
-
-assert_error($info["owner"] == $user["id"], "You cannot rename this image.");
-
-$name = $info['name'];
-if (isset($_POST['name'])) {
- $name = esca($_POST['name']);
- if ($name == "") {
- $error = "You must give a non-empty name to this image. Please.";
- } else {
- sql("UPDATE images SET name = '" . escs($name) . "' WHERE id = $id");
- header("Location: image");
- die();
- }
-}
-
-$title = "Rename : " . $info['name'];
-$fields = array(
- array("label" => "New name : ", "name" => "name", "value" => $name),
-);
-$validate = "Rename";
-
-require("tpl/general/form.php");