Version: 2.00, by WetWired
Developer Last Online: Sep 2014
Version: 3.5.2
Rating:
Released: 07-30-2005
Last Update: Never
Installs: 35
Uses Plugins Template Edits
No support by the author.
Description
This plugin provides identification in the postbit of which post each post is a reply to (See screenshots if clarification is needed)
The original purpose of this modification was to provide missing information to linear view mode users. I got the idea from a board I visit that used to be UBB Threads, though my choice of presentation is a bit different. After several requests with my previous version, I have added this same display to hybrid and threaded view modes.
The attached screenshots are probably the best explaination.
Lineage
This is the vb3.5/plugin version of my previous vb3.0 hack you can find here
Complexity
One xml import, and 4 template edits
Technical
This hack has been tested on vB3.5.0RC1
It adds 2 queries to showthread, and adds 1 additional query for each consecutive layer of deleted parents of posts displayed on a page. (If a displayed post is a reply to a deleted reply to an undeleted reply to a deleted reply to an undeleted post, 3 total queries are added to showthread, but if a displayed post is a reply to a deleted reply to a deleted reply to a deleted reply to an undeleted post, 5 total queries are added to showthread. If both examples are displayed in the same page, only 5 total queries are added to showthread.)
Functional changes since vb3.0 version
Display of additional information appears in all thread view modes
Now displays in showpost.php
Full template change steps included (variable details still given for customization)
Support
Please click the install link to the right if you install this modification.
Please leave any questions about the plugin in this thread, I will answer them whenever I get the chance (probably about once a week after the first week after vb3.5.0 gold, more frequently before then).
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
I tried it again and it worked this time. Not sure what happened at my first attempt. Here is the section of the postbit template containing your code:
Code:
<!-- status icon and date -->
<a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_$post[statusicon].gif" alt="$post[statustitle]" border="0" /></a>
<if condition="!$show['announcement']">
$post[postdate]<if condition="!$show['detailedtime']">, $post[posttime]</if>
<else />
<phrase 1="$post[startdate]" 2="$post[enddate]">$vbphrase[x_until_y]</phrase>
</if>
<!-- in reply to hack -->
<if condition="isset($post['re_postid'])">
in reply to <if condition="$post['re_userid']"><a href="member.php?userid=$post[re_userid]">$post[re_username]</a><else />$post[re_username]</if>'s <if condition="$post['re_tittype']!=0">post <if condition="$post['re_tittype']==2">starting</if></if> <a href="$post[re_url]" <if condition="!$post['re_isonpage']">target="_blank"</if>><if condition="$post['re_tittype']==0">untitled post<else />"$post[re_title]"</if></a>
</if>
<!-- / in reply to hack -->
$post[firstnewinsert]
<!-- / status icon and date -->