Quote:
Originally Posted by Paul M
You seem to be over complicating a simple change.
Simply replace ;
PHP Code:
$userinfo['where'] = '<a href="misc.php?do=topposters">'.$vbulletin->options['bburl'].'/misc.php?do=topposters</a>';
With
PHP Code:
$userinfo['where'] = '<a href="misc.php?do=topposters">'.$vbphrase['top_list'].'</a>';
Nothing else needs to be done.
|
I really appreciate the help, Paul, and I apologize. I've modified plugins for activity name stuff before, and this one was just getting to me because of that extra information.
Anyway, I reverted the changes I did and changed what you told me to change, and it worked.
The only additional change I made was changing this:
Code:
$userinfo['action'] = $vbphrase['top_view'];
...to this:
Code:
$userinfo['action'] = "Viewing Page";
That way it says
Viewing Page Top Posters instead of
Viewing Top Posters Top Posters.
Thanks again, Paul!