• 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!

Creating character BUG (wrong sex)

kito2

www.masteria.net
Joined
Mar 9, 2009
Messages
3,764
Solutions
1
Reaction score
226
Location
Chile, Santiago
system/applications/views/creater.php

There shows:
PHP:
                    <li class="odd">
                        <input name="sex" type="radio" id="sex" value="0" checked="checked" />
                        male &nbsp;
                        <input type="radio" id="sex" name="sex" value="1" />
                        female </li>

It should be:
PHP:
                    <li class="odd">
                        <input name="sex" type="radio" id="sex" value="1" checked="checked" />
                        male &nbsp;
                        <input type="radio" id="sex" name="sex" value="0" />
                        female </li>
 
Back
Top