Quote:
Originally Posted by j.jacobsen
That's quite easy and a quickie. Here we go:
1) Find in original code
Code:
$pmdm->set('title', $vbphrase[anti_autopm_bud_tit]);
$pmdm->set('message', $vbphrase[anti_autopm_bud_mes]);
2) Replace with
Code:
$anti_autopm_bud_tit = str_replace("$1",$vbulletin->userinfo['username'],$vbphrase[anti_autopm_bud_tit]);
$pmdm->set('title', $anti_autopm_bud_tit);
$anti_autopm_bud_mes = str_replace("$1",$vbulletin->userinfo['username'],$vbphrase[anti_autopm_bud_mes]);
$pmdm->set('message', $anti_autopm_bud_mes);
3) Use $1 in the phrases where you like to get the username
|
wow, thanks for this, but now is there a way to put a link in there somewhere, like I think you should be able since you got this to work...
Like a link of what i posted before for that user to automatically add him (approve)??
thanks!!