diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-12 11:42:41 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-12 11:50:07 +0200 |
commit | 9ba303a95f22e881a2f2cc8657645560ca646d05 (patch) | |
tree | 5fa5728c95b608c9de32cb8ee3ef97ea92dbc83a /files/templates | |
parent | 6c4d075bd656497e793c230818c53fa085cbbbf9 (diff) | |
download | nextcloud-server-9ba303a95f22e881a2f2cc8657645560ca646d05.tar.gz nextcloud-server-9ba303a95f22e881a2f2cc8657645560ca646d05.zip |
fix uploading multiple files
Diffstat (limited to 'files/templates')
-rw-r--r-- | files/templates/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index 7ebb6e46949..cd061596a02 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -7,8 +7,8 @@ <input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir"> <div class="file_upload_wrapper" class="svg"> <input type="submit" class="file_upload_filename" value="<?php echo $l->t('Upload'); ?>"/> - <input id="file_upload_start" class="file_upload_start" type="file" name='files[]'/> - <a href="#" id="file_upload_button_wrapper" onclick="return false;" title="<?php echo 'max. '.$_['uploadMaxHumanFilesize'] ?>"></a> + <input class="file_upload_start" class="file_upload_start" type="file" name='files[]'/> + <a href="#" class="file_upload_button_wrapper" onclick="return false;" title="<?php echo 'max. '.$_['uploadMaxHumanFilesize'] ?>"></a> </div> <iframe name="file_upload_target_1" class='file_upload_target' src=""></iframe> </form> |