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

Website bugs

perre123

Game Developer
Joined
Jan 18, 2008
Messages
101
Reaction score
19
Location
Sweden
bug1.png

On line 304
Code:
            <!-- FORMS TO CHANGE CHARACTER GENDER-->
            <?php if ($config['change_sex'] === true) { ?>
            <tr><td>
                <form action="" method="post">
                        Change character gender:<br>
                        <select name="change_gender">
                        <?php
                        for ($i = 0; $i < $char_count; $i++) {
                            echo '<option value="'. $characters[$i] .'">'. $characters[$i] .'</option>'; 
                        }
                        ?>
                        </select>
                        <?php
                            /* Form file */
                            Token::create();
                        ?>
                        <input type="submit" value="Change gender" class="btn btn-info">
                </form>

On line 324
Code:
            <!-- FORMS TO CHANGE CHARACTER NAME-->
            <?php if ($config['change_name'] === true) { ?>
                <form action="" method="post">
                        Change character name:<br>
                        <select name="change_name">
                        <?php
                        for ($i = 0; $i < $char_count; $i++) {
                            echo '<option value="'. $characters[$i] .'">'. $characters[$i] .'</option>'; 
                        }
                        ?>
                        </select>
                        <input type="text" name="newName" placeholder="New Name">
                        <?php
                            /* Form file */
                            Token::create();
                        ?>
                        <input type="submit" value="Change name" class="btn btn-info">
                </form>


Anyone know :s ?
 
Back
Top