Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

[Core Edit] Normalize Thread / Post Title

$
0
0
We often see people posts with all-caps or mixed letter subjects that looks very odd. Example?

HELLO brO!!!
HELP mE pLeaSE ...

Weird, right? Well, lets normalize the title with a single line core edit.

Open the file
Code:
inc/datahandlers/post.php

Go to around line no. 148 and find this code line:
PHP Code:
$subject trim_blank_chrs($subject); 

Now add just after that:
PHP Code:
$subject ucwords(strtolower($subject)); 

Save the file, reupload to right location.
Now all your future thread / post subjects will be like:

Hello Bro!!!
Help Me Please ...

Happy coding Big Grin

Viewing all articles
Browse latest Browse all 690

Trending Articles