The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Replace char in thread title (class_dm_threadpost)
Hi,
i want to replace single characters from thread titles in specific forums only. i've added a small piece of code Code:
function verify_title(&$title) { // replace html-encoded spaces with actual spaces $title = preg_replace('/&#(0*32|x0*20);/', ' ', $title); if($foruminfo['forumid'] == '31' or $foruminfo['forumid'] == '114' or $foruminfo['forumid'] == '32') { $title = preg_replace('/[\.]/', ' ', $title); $title = preg_replace('/[\-]/', ' - ', $title); $title = str_replace(" ", " ", $title); } $title = trim($title); how to get the forumid in class_dm_thread_post? Any idea? cheers |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|