Cmxmods.net
Would you like to see a new MOD created?

Support Forum · Home » phpBB 2.0.x » MOD's » Usernames Begin With Capital Letter


The purpose of this MOD, is to clean up your viewforum.php pages, by forcing every topic to be displayed as starting with a capital letter. For instance, if the topic looking for webhosting requests was posted, it would be displayed as Looking for webhosting requests. Much more professional!

Download this MOD from the phpBB.com MOD Database.

Fix for Category Hierarchy: Thanks to "SmileyFace" for providing the fix for Ptirhiik's Categories Hierarchy:

#
#-----[ OPEN ]------------------------------------------
#
functions_post.php


#
#-----[ FIND ]------------------------------------------
#
global $userdata, $user_ip;

#
#-----[ AFTER, ADD ]------------------------------------------
#
$post_subject = ucfirst($post_subject);

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM