The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Well... found a fix for parsing usertitles for bbcode in private messages.
However, it's a bugger file edit in /includes/class_postbit_alt.php It's a matter of changing this Code:
function parse_bbcode()
{
$this->post['message'] = parse_pm_bbcode($this->post['message'], $this->post['allowsmilie']);
}
Code:
function parse_bbcode()
{
$this->post['message'] = parse_pm_bbcode($this->post['message'], $this->post['allowsmilie']);
// ##### START HACK - Parse Usertitles for BBCode #####
$this->post['usertitle'] = parse_pm_bbcode($this->post['usertitle']);
// ##### END HACK - Parse Usertitles for BBCode #####
}
Any help is appreciated
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|