To clear up the simple confusion, mostly for you Vincent..
$bbuserinfo[] - Can be used in any template, but will ALWAYS display YOUR information, not others.
$post[] - Displays information on the users within a thread but only can be used in showthread.php templates (and those in functions.php)
$thread[] - Used in forumdisplay.php templates
$forum[] - used in index.php templates
---------------------
Here is a quick fix for this hack, that will provide no excess queries:
1. Run this query in PhpMyAdmin:
PHP Code:
Alter table thread add usertitle varchar(250) not null;
2. In newthread.php, find this:
PHP Code:
visible,attach,description)
Replace it with:
PHP Code:
visible,attach,description,usertitle)
3. Now find:
PHP Code:
,'".addslashes($description)."'
Replace it with:
PHP Code:
,'".addslashes($description)."','".addslashes($bbuserinfo[usertitle])."'
4. In forumdisplay.php, find:
PHP Code:
votetotal,attach,description
Replace it with:
PHP Code:
votetotal,attach,description,usertitle
5. Now in the template
forumdisplaybit, find:
And after it place:
Code:
<br><smallfont>$thread[usertitle]</smallfont>
And there we go