Quote:
Originally Posted by gamebgs
thank you, hope it works out great, as it would be cool to use the $userinfo[username] instance in the title also to do something like this...
|
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