Quote:
Originally Posted by JustAskJulie
how do I change it so that the PM comes from the admin rather than the user who left the reputation?
|
You need to edit the plugin "Send Reputation PM".
Find
PHP Code:
$pmdm->set( 'fromuserid', $vbulletin->userinfo['userid'] );
$pmdm->set( 'fromusername', $vbulletin->userinfo['username'] );
Change $vbulletin->userinfo['userid'] and $vbulletin->userinfo['username'] to the user id and the name of your admin account, or whatever user you want to use.
PHP Code:
$pmdm->set( 'fromuserid', 1 );
$pmdm->set( 'fromusername', 'admin' );
To change the name in the message
Find
PHP Code:
$pmdm->set( 'message', construct_phrase($vbphrase['sk_repnotif_pm_message'], $score, $db->escape_string(fetch_censored_text($vbulletin->GPC['reason'])), $vbulletin->userinfo['username'], $vbulletin->options['bburl'] . "/showthread.php?p=" . $postid ) );
And again change $vbulletin->userinfo['username'] to whatever name you want to use
PHP Code:
$pmdm->set( 'message', construct_phrase($vbphrase['sk_repnotif_pm_message'], $score, $db->escape_string(fetch_censored_text($vbulletin->GPC['reason'])), 'admin', $vbulletin->options['bburl'] . "/showthread.php?p=" . $postid ) );
/SK