diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-02-12 19:50:55 +0100 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2012-02-12 19:50:55 +0100 |
commit | 24547ccec6526fcef3cccb34bc35fb81f31236b3 (patch) | |
tree | fc908fb06a6b8b4d4131c7303c4fb3b7d348f9bf /tpl/image/upload.php | |
parent | cd76af42463bd80539db8c9671a427a9f0fe5d69 (diff) | |
download | Bits-24547ccec6526fcef3cccb34bc35fb81f31236b3.tar.gz Bits-24547ccec6526fcef3cccb34bc35fb81f31236b3.zip |
A lot of changes : blogging system essentially.
Diffstat (limited to 'tpl/image/upload.php')
-rw-r--r-- | tpl/image/upload.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tpl/image/upload.php b/tpl/image/upload.php index 6e9ee55..71283cf 100644 --- a/tpl/image/upload.php +++ b/tpl/image/upload.php @@ -6,7 +6,8 @@ if ($user['id'] == 0) $message = "You should create an account so that you can t $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 file : ", "type" => "file", "name" => "image"), + array("label" => "Image title (optionnal) : ", "type" => "text", "name" => "name") ); $validate = "Upload"; |