summaryrefslogtreecommitdiff
path: root/tpl/image/upload.php
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2012-06-21 16:34:27 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2012-06-21 16:34:27 +0200
commit889e8eaf7c40817663dd602a21ac771062ccac3b (patch)
treeca8ac81ee202165333e5ffe16147d09e5cdaf2ab /tpl/image/upload.php
parent5c4caed8560d5fded00525844dfa8386b97e7918 (diff)
downloadBits-889e8eaf7c40817663dd602a21ac771062ccac3b.tar.gz
Bits-889e8eaf7c40817663dd602a21ac771062ccac3b.zip
Big change, sir. Can now upload any kind of files.
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");
-
-