diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-05-26 00:25:50 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-05-26 00:25:50 +0000 |
commit | bb1679af9a8079e5531ef743e51c548a6e7e820b (patch) | |
tree | 0b7e113f2141d6a3f63fc96557049fb50c4a4bea /phpBB/templates | |
parent | 0fee31117bf2573efbea4a8b2a70b16b648adb79 (diff) | |
download | forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar.gz forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar.bz2 forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar.xz forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.zip |
Lots of work on posting. New topic and reply functionality is mostly done. Edit post loads the form but needs database functionality
All this is only been tested on Postgres, donno if it works as well on MySQL yet, will test when I can get access to sourceforge again
git-svn-id: file:///svn/phpbb/trunk@328 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r-- | phpBB/templates/Default/viewtopic_body.tpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/templates/Default/viewtopic_body.tpl b/phpBB/templates/Default/viewtopic_body.tpl index b75965fc6e..a4739c459c 100644 --- a/phpBB/templates/Default/viewtopic_body.tpl +++ b/phpBB/templates/Default/viewtopic_body.tpl @@ -63,7 +63,8 @@ </tr> <!-- BEGIN postrow --> <tr bgcolor="{postrow.ROW_COLOR}" class="tablebody"> - <td width="20%" align="left" valign="top"> + <td width="20%" align="left" valign="top" nowrap> + <a name="{postrow.U_POST_ID}"> <font style="{font-size: 10pt; font-weight: bold;}">{postrow.POSTER_NAME}</font><br> {postrow.POSTER_RANK}<br> {postrow.RANK_IMAGE}<br> @@ -72,7 +73,7 @@ {L_JOINED}: {postrow.POSTER_JOINED}<br>{L_POSTS}: {postrow.POSTER_POSTS}<br>{postrow.POSTER_FROM}</font> </td> <td> - <img src="images/posticon.gif"><font style="{font-size: 8pt;}">{postrow.L_POSTED}: {postrow.POST_DATE}</font><hr> + <img src="images/posticon.gif"><font style="{font-size: 8pt;}">{L_POSTED}: {postrow.POST_DATE}</font><hr> {postrow.MESSAGE}<hr> {postrow.PROFILE_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.ICQ_STATUS_IMG} {postrow.ICQ_ADD_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG} <img src="images/div.gif"> {postrow.EDIT_IMG} {postrow.QUOTE_IMG} {postrow.PMSG_IMG} <img src="images/div.gif"> {postrow.IP_IMG} {postrow.DELPOST_IMG} </td> |