diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-22 15:49:10 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-22 15:49:10 +0000 |
commit | 9209c975afab4fd4ae3b977f095af1706423f14e (patch) | |
tree | 60ef05d864fe589a7a0b842a25ef7763bf188c35 | |
parent | 307999321d3cd5bd0d6a21db02bd6be866d5baa6 (diff) | |
download | forums-9209c975afab4fd4ae3b977f095af1706423f14e.tar forums-9209c975afab4fd4ae3b977f095af1706423f14e.tar.gz forums-9209c975afab4fd4ae3b977f095af1706423f14e.tar.bz2 forums-9209c975afab4fd4ae3b977f095af1706423f14e.tar.xz forums-9209c975afab4fd4ae3b977f095af1706423f14e.zip |
small fix for redirecting to wrong post because of non-existant post id anchor (if first unread anchor is set) - blablabla - ok, just a small fix, just that.
git-svn-id: file:///svn/phpbb/trunk@5274 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/styles/subSilver/template/viewtopic_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/subSilver/template/viewtopic_body.html b/phpBB/styles/subSilver/template/viewtopic_body.html index 9b6cbe4738..c20c8832db 100644 --- a/phpBB/styles/subSilver/template/viewtopic_body.html +++ b/phpBB/styles/subSilver/template/viewtopic_body.html @@ -125,7 +125,7 @@ <!-- IF postrow.S_IGNORE_POST --> <td class="gensmall" colspan="2" height="25" align="center">{postrow.L_IGNORE_POST}</td> <!-- ELSE --> - <td align="center" valign="middle"><!-- IF postrow.S_FIRST_UNREAD --><a name="unread"></a><!-- ELSE --><a name="{postrow.POST_ID}"></a><!-- ENDIF --><b class="postauthor">{postrow.POSTER_NAME}</b></td> + <td align="center" valign="middle"><!-- IF postrow.S_FIRST_UNREAD --><a name="unread"></a><!-- ENDIF --><a name="{postrow.POST_ID}"></a><b class="postauthor">{postrow.POSTER_NAME}</b></td> <td width="100%" height="25"><table width="100%" cellspacing="0"> <tr> <!-- IF postrow.POST_ICON_IMG --> |