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.