Okay, so I added this plugin (credit goes to Joe for helping over on the official vBulletin site), which works:
Code:
if (strpos($userinfo['location'], 'moderation.php?do=viewdiscussions') !== false)
{
$userinfo['action'] = 'Viewing Moderated Group Discussions';
$handled = true;
}
However, how do I separate it? One for deleted discussions -- Viewing Deleted Group Discussions -- and one for moderated discussions -- Viewing Moderated Group Discussions. I'm currently using Viewing Moderated Group Discussions for both.
I tried adding the deleted and moderated specifiers at the end: moderation.php?do=viewdiscussions&type=deleted and moderation.php?do=viewdiscussions&type=moderated. However, those didn't seem to do anything.
Thanks!