Quote:
Originally Posted by StEaLtH666
Installed and working - and thanks.
I'm probably being daft but I don't see how to get 'an overview' of all usernotes... mods/admin are only able to see the usernotes they made themselves.
Is it possible for admin to see all usernotes issued by all staff and would that include usernotes that are automatically added such as following an email change (where that modification is installed)?
|
Just remove this;
PHP Code:
WHERE posterid=" . $vbulletin->userinfo['userid'] . "
This calls only the usernotes that a userID has posted. By removing it you will have everyones usernotes displayed.
Also don't forget to tweak the number of usernotes displayed from the default 10.
PHP Code:
$numberofrecords = 10;
HTH.