Quote:
Originally Posted by clmazin
Works well for me, except for this:
When it pulls up the new threads, those threads are properly linked. Older threads listed on the page, however, get a strange "t=3459" type of syntax, which does not link properly.
Any thoughts?
Otherwise, very cool!
C.
|
This is a quick a Dirty fix for your problem
Go into the vbispy.php and find
PHP Code:
$post_url = 'showthread.php?' . ($etype == 'New Thread') ? "t=$thread[threadid]" : "p=$thread[lastpostid]#post$thread[lastpostid]";
Replace with this
PHP Code:
$post_url = 'showthread.php?' . ($etype == 'New Thread') ? "showthread.php?t=$thread[threadid]" : "p=$thread[lastpostid]#post$thread[lastpostid]";