The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Replace character of thread titles.
Hello friend vbulletin, I have a request; I need to replace some characters in only thread title created.
For example : "Im have one question" to 'Im have Question' Character is " to ' , any plugin or hook to recommend me? Thanks so much and advance. |
#2
|
||||
|
||||
You can run queries in phpmyadmin:
Code:
UPDATE thread SET title = REPLACE(title,'"','\''); UPDATE post SET title = REPLACE(title,'"','\''); |
#3
|
||||
|
||||
Thanks for u help, but this is not what I need. What I need is that when the user creates an issue when using this symbol " can not be used and it is replaced by this '
please see my idea, im only search for vbulletin 3 https://vborg.vbsupport.ru/showpost....39&postcount=1 |
#4
|
||||
|
||||
You can edit "class_dm_threadpost.php" file.
Find: Code:
$title = preg_replace('/&#(0*32|x0*20);/', ' ', $title); Code:
$title = str_replace('"', "'", $title); |
Благодарность от: | ||
HenryRocket |
#5
|
||||
|
||||
Thanks so much SeveSkin this working. Thanks so much again!
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|