diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-27 14:48:38 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-01-17 19:20:36 -0800 |
commit | 9c1cacae42d5d993a004a311089d7ac943002dc5 (patch) | |
tree | 37d96df33f4f91810086c68db2015d673388de80 /phpBB/styles | |
parent | 708622a0bba1656f8538767ab8d0e0260075dddc (diff) | |
download | forums-9c1cacae42d5d993a004a311089d7ac943002dc5.tar forums-9c1cacae42d5d993a004a311089d7ac943002dc5.tar.gz forums-9c1cacae42d5d993a004a311089d7ac943002dc5.tar.bz2 forums-9c1cacae42d5d993a004a311089d7ac943002dc5.tar.xz forums-9c1cacae42d5d993a004a311089d7ac943002dc5.zip |
[ticket/11915] Provide the URL to the attachment when it's uploaded.
PHPBB3-11915
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_attach_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html index af215bb710..2af0686ac8 100644 --- a/phpBB/styles/prosilver/template/posting_attach_body.html +++ b/phpBB/styles/prosilver/template/posting_attach_body.html @@ -55,7 +55,7 @@ <!-- BEGIN attach_row --> <tr class="attach-row" data-attach-id="{attach_row.ATTACH_ID}"> <td class="attach-name"> - <a class="file-name" href="{attach_row.U_VIEW_ATTACHMENT}">{attach_row.FILENAME}</a> + <span class="file-name"><a href="{attach_row.U_VIEW_ATTACHMENT}">{attach_row.FILENAME}</a></span> <span class="attach-controls"> <!-- IF S_INLINE_ATTACHMENT_OPTIONS --><input type="button" value="{L_PLACE_INLINE}" onclick="attach_inline({attach_row.ASSOC_INDEX}, '{attach_row.A_FILENAME}');" class="button2 file-inline-bbcode" /> <!-- ENDIF --> <input type="submit" name="delete_file[{attach_row.ASSOC_INDEX}]" value="{L_DELETE_FILE}" class="button2 file-delete" /> |