diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-17 18:14:26 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-17 18:14:26 +0200 |
commit | ec7e33870441f81f10385ca0329e7a91fcf3ae45 (patch) | |
tree | 4faa4abe4c22f18bcd114281860563c15266d063 /files/templates | |
parent | d59b0df401c76e7434fda889af81f47adb5bd656 (diff) | |
download | nextcloud-server-ec7e33870441f81f10385ca0329e7a91fcf3ae45.tar.gz nextcloud-server-ec7e33870441f81f10385ca0329e7a91fcf3ae45.zip |
display max file size for upload
Diffstat (limited to 'files/templates')
-rw-r--r-- | files/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index c6dc123cee0..b556da5513d 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -11,7 +11,7 @@ method="post" enctype="multipart/form-data" target="file_upload_target"><input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_["uploadMaxFilesize"] ?>" id="max_upload"><input type="hidden" name="dir" value="<?php echo $_["dir"] ?>" id="dir"><input type="file" name="file" id="fileSelector"><input type="submit" -id="file_upload_start" value="Upload" /><iframe id="file_upload_target" +id="file_upload_start" value="Upload (max <?php echo $_["uploadMaxHumanFilesize"];?>)" /><iframe id="file_upload_target" name="file_upload_target" src=""></iframe></form> <form id="file_newfolder_form"><input type="text" name="file_new_dir_name" id="file_new_dir_name" /> <input type="button" id="file_new_dir_submit" name="file_new_dir_submit" value="OK" /></form> </div> |