
04-30-2006, 11:52 PM
|
|
|
Join Date: Aug 2005
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by cd1986
Going to be using this mod on my forum soon, but was also find that when confirming a forum, the person who confirmed it would be set as the owner and not the true owner. To remedy this, open up queue.php
Code:
FIND
$moddata->set('username', htmlspecialchars_uni($vbulletin->userinfo['username']));
REPLACE WITH
$moddata->set('username', htmlspecialchars_uni($owner));
There was also a bug in the diary_main_modslist template:
Code:
REPLACE THE ENTIRE TEMPLATE WITH THE BELOW CODE
<a href="$vboptions[bburl]/member.php?u=$moderator[userid]">$moderator[username]</a>,
|
Thx a lot, it works!
|