PDA

View Full Version : Force Capitalize First letter of all Words in title?


DNCL
07-29-2011, 05:27 PM
Hello,

How to Force Capitalize First letter of all Words in title ?

so if some users randomly posted a thread with this title:
New thread with Small and Capital letters

the result will be after submitting the thread:
New Thread With Small And Capital Letters

Thanks for help :)

kh99
07-29-2011, 05:37 PM
Maybe this: https://vborg.vbsupport.ru/showthread.php?t=168831

It's for an older version but I don't see any reason that it wouldn't work with vb4. Also it includes a way to exclude "small" words from being capitalized, but if you don't want that you could just create a plugin using hook newthread_post_start and this one line:

$vbulletin->GPC['subject'] = ucwords(strtolower($vbulletin->GPC['subject']));

DNCL
07-29-2011, 08:17 PM
Thank you, both plugins worked. :)

CK
07-29-2011, 09:23 PM
This Kind Of Stuff Really Annoys Me Because Its Pointless and Un-needed, Especially When People Apply It To Forum Titles :D

DNCL
07-29-2011, 09:34 PM
hehe, what stuff exactly you mean, having everything capitalized or not?