Quote:
Originally Posted by hugh_
Would it be possible to add the ability to choose the user who sends the PM?
Thanks...
|
Sure, you could simply edit the ezbounce.php file as follows...
Find this:
PHP Code:
// Set other funky stuff for PM
$pmdm->set('fromuserid', $vbulletin->userinfo['userid']);
Replace with this:
PHP Code:
// Set other funky stuff for PM
$pmdm->set('fromuserid', FUSER);
Be sure to replace
FUSER above with the actual userid of the user you want to have sent the PM.