summaryrefslogtreecommitdiff
path: root/tpl/image/upload.php
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/image/upload.php')
-rw-r--r--tpl/image/upload.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/tpl/image/upload.php b/tpl/image/upload.php
deleted file mode 100644
index 71283cf..0000000
--- a/tpl/image/upload.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-$title = "Upload an image";
-
-if ($user['id'] == 0) $message = "You should create an account so that you can track images you have uploaded.";
-
-$form_message = "A $miniature_width"."px preview will be created.";
-$need_file = true;
-$fields = array(
- array("label" => "Image file : ", "type" => "file", "name" => "image"),
- array("label" => "Image title (optionnal) : ", "type" => "text", "name" => "name")
- );
-$validate = "Upload";
-
-require("tpl/general/form.php");
-
-