Open root/forumdisplay.php
Find (around line 613 in 2.2.2):
PHP Code:
if ($thread['postuserid']) {
$thread['postedby'] = "<a href=\"member.php?action=getinfo&userid=$thread[postuserid]\">$thread[postusername]</a>";
} else {
$thread['postedby'] = $thread[postusername];
}
and change it to:
PHP Code:
if ($thread['postuserid']) {
$thread['postedby'] = $thread[postusername];
} else {
$thread['postedby'] = $thread[postusername];
}
That should work :up: