The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
BBCode parsing in usertitles
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 |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|