• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Problem with guilds.php

analizer

New Member
Joined
Apr 13, 2011
Messages
63
Reaction score
2
My problem is that players can create guild with small first letter (for example: immortals instead of Immortals)and they can use signs like ' * - > etc. in the guild name

here is my guilds.php
http://wklejto.pl/95847
 
Change this line
PHP:
$new_guild->setName($guild_name);
to
PHP:
$new_guild->setName(ucfirst($guild_name));
to always capitalize the first letter.

I do not have the time to go through the script to fix the issue with illegal characters being used, sorry.
 
Back
Top