Topic: profile.php problem

Hello, I found a little problem in the profile.php file on lines 1591-1592 :

                    echo "\n\t\t\t\t\t\t\t\t\t".'<label><input type="checkbox" name="moderator_in['.$cur_forum['fid'].']" value="1"'.((in_array($id, $moderators)) ? ' checked="checked"' : '').' />'.pun_htmlspecialchars($cur_forum['forum_name']).'<br /></label>'."\n";
                }

?>
                                <!--REMOVE THIS --></div>
                            <!--REMOVE THIS --></div>
                            <br class="clearb" /><input type="submit" name="update_forums" value="<?php echo $lang_profile['Update forums'] ?>" />
                        </div>
                    </fieldset>

=> Remove the two "<div>"

Re: profile.php problem

Those divs are closing the opening divs on the last forum.

                            <div class="conl">
                                <p><strong>Miscellaneous</strong></p>
                                <div class="rbox">
                                    <label><input type="checkbox" name="moderator_in[16]" value="1" />Whatever<br /></label>

                                    <label><input type="checkbox" name="moderator_in[17]" value="1" />Whatever<br /></label>

                                    <label><input type="checkbox" name="moderator_in[3]" value="1" />Whatever<br /></label>
                                </div>
                            </div>
                            <br class="clearb" /><input type="submit" name="update_forums" value="Update forums" />