open admin/readprv.php
Very nice. I know that someone else made one of these but I never looked at it. I'm going to dig it up and see if it had any additional features. In the mean time here are 2 little things I added.
find
PHP Code:
?>
<p><b>vBulletin Administrators' PM Reading Panel</b><br>
right before it add
PHP Code:
if ($fr!="") {
$nextaction="<input type=\"hidden\" name=\"to\" value=\"".$fr."\">";
$nextname="Incoming";
$thisname="Outgoing";
} else {
$nextaction="<input type=\"hidden\" name=\"fr\" value=\"".$to."\">";
$nextname="Outcoming";
$thisname="Incoming";
}
find
PHP Code:
<font size='1'>Software Developed by <a href="mailto:dominator@azwave.net">RaVeN (aka ExcErr)</a> espcially For vBulletin v 2.2.2 & Your vB Version is <? echo $versionnumber;?></font></p>
right after add
PHP Code:
<p align=center><form action="<? echo $PHP_SELF; ?>" name="name" method="post">
<? echo $nextaction; ?>
<input type="hidden" name="action" value="read">
<input type="submit" value=" View <? echo $nextname; ?> PMs for this User " accesskey="s">
</form></p>
<p><font size=3><strong><? echo $thisname; ?> PMs</strong></font></p>
this will add a button to switch between incoming and outgoing messages for the current ID
open admin/user.php
find
PHP Code:
makelinkcode("delete pms","user.php?s=$session[sessionhash]&action=killpms&userid=$user[userid]&ids=$ids&username=$user[username]")."
and change it to
PHP Code:
makelinkcode("delete pms","user.php?s=$session[sessionhash]&action=killpms&userid=$user[userid]&ids=$ids&username=$user[username]").
makelinkcode("view pms","readprv.php?s=$session[sessionhash]&action=read&to=$user[userid]")."
this will add a view pms link to your pm statistics page