diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-03-07 21:43:44 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-03-07 21:43:44 +0100 |
commit | 018f0c4b72d9d2ca1c27c4c543a805b227745beb (patch) | |
tree | 8d4bc4d73f576331a8b8f6ffc55b6a141b8d54c1 /files/templates | |
parent | cf5d63f0abc2b4537098962ad5051180861f965b (diff) | |
download | nextcloud-server-018f0c4b72d9d2ca1c27c4c543a805b227745beb.tar.gz nextcloud-server-018f0c4b72d9d2ca1c27c4c543a805b227745beb.zip |
add option to add file from url
Diffstat (limited to 'files/templates')
-rw-r--r-- | files/templates/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index 7e9505dec2f..7fc51c288e1 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -7,6 +7,7 @@ <ul class="popup popupTop"> <li style="background-image:url('<?php echo mimetype_icon('text/plain') ?>')" data-type='file'><p><?php echo $l->t('Text file');?></p></li> <li style="background-image:url('<?php echo mimetype_icon('dir') ?>')" data-type='folder'><p><?php echo $l->t('Folder');?></p></li> + <li style="background-image:url('<?php echo image_path('core','actions/public.png') ?>')" data-type='web'><p><?php echo $l->t('From url');?></p></li> </ul> </div> <div class="file_upload_wrapper svg"> |