diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-06-21 16:34:27 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-06-21 16:34:27 +0200 |
commit | 889e8eaf7c40817663dd602a21ac771062ccac3b (patch) | |
tree | ca8ac81ee202165333e5ffe16147d09e5cdaf2ab /tpl/image/upload.php | |
parent | 5c4caed8560d5fded00525844dfa8386b97e7918 (diff) | |
download | Bits-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.php | 16 |
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"); - - |