views:

1032

answers:

4

I am using the prosilver theme in phpbb3. In the file forumlist_body.html there is a part that looks like this:

<dd class="lastpost"><span>
<!-- IF forumrow.LAST_POST_TIME -->
<dfn>{L_LAST_POST}</dfn> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}
  <!-- IF not S_IS_BOT -->
  <a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a>
  <!-- ENDIF -->
<br />
{forumrow.LAST_POST_TIME}
<!-- ELSE -->{L_NO_POSTS}<br />
<!-- ENDIF -->
</span></dd>

How would I get that to show the last post title as well. I tried {forumrow.LAST_POST_TITLE} but it didn't work.

+1  A: 

{forumrow.LAST_POST_SUBJECT} is probably what you need.

Milen A. Radev
A: 

Thank you so much it worked :)

Please don't post comments as answers, use the "add comment" feature instead.
Milen A. Radev
A: 

It doesn't look like mine..

*

  {forumrow.FORUM_NAME}{L_FORUM}
      {L_TOPICS}
      {L_POSTS}
      {L_LAST_POST}

*

  {forumrow.FORUM_IMAGE} {forumrow.FORUM_NAME}
  {forumrow.FORUM_DESC}
  {forumrow.L_MODERATOR_STR}: {forumrow.MODERATORS}
  {forumrow.L_SUBFORUM_STR} {forumrow.SUBFORUMS}
      {L_REDIRECTS}: {forumrow.CLICKS}
      {forumrow.TOPICS} {L_TOPICS}
      {forumrow.POSTS} {L_POSTS}
      {L_LAST_POST}{L_POST_BY_AUTHOR}{forumrow.LAST_POSTER_FULL}  {LAST_POST_IMG}
      {forumrow.LAST_POST_TIME}{L_NO_POSTS}

{L_NO_FORUMS}

A: 

http://www.ktuk.net/phpBB3/viewtopic.php?f=32&amp;t=2300 is what i used, worked a treat for me

check my blog too and the forum you will see my result www.triffictottenham.co.uk/forum

coxie