diff options
author | v12mike <v12mike@ingenious.co.nz> | 2019-09-07 04:16:31 -0400 |
---|---|---|
committer | v12mike <v12mike@ingenious.co.nz> | 2019-09-07 04:16:31 -0400 |
commit | c31216e4930645df808577dea017642f0495989f (patch) | |
tree | 65c4238e94e0b17da840631df529ac5f3ae018ed /phpBB | |
parent | 4db585a4cb2e5359074a82ef088574609155294b (diff) | |
download | forums-c31216e4930645df808577dea017642f0495989f.tar forums-c31216e4930645df808577dea017642f0495989f.tar.gz forums-c31216e4930645df808577dea017642f0495989f.tar.bz2 forums-c31216e4930645df808577dea017642f0495989f.tar.xz forums-c31216e4930645df808577dea017642f0495989f.zip |
[ticket/16150] Make post subject link an absolute url
The previous version was relative to a &start= which was
sometimes wrong.
PHPBB3-16150
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 8d7e26f099..63ed2ba8d6 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -224,7 +224,7 @@ <div id="post_content{postrow.POST_ID}"<!-- IF postrow.S_POST_HIDDEN --> style="display: none;"<!-- ENDIF -->> <!-- EVENT viewtopic_body_post_subject_before --> - <h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3> + <h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --><a href="{postrow.U_MINI_POST}">{postrow.POST_SUBJECT}</a></h3> <!-- DEFINE $SHOW_POST_BUTTONS = (postrow.U_EDIT or postrow.U_DELETE or postrow.U_REPORT or postrow.U_WARN or postrow.U_INFO or postrow.U_QUOTE) --> <!-- EVENT viewtopic_body_post_buttons_list_before --> |