Make WordPress Core

Ticket #13383: 13383-ms-options.diff

File 13383-ms-options.diff, 4.8 KB (added by Utkarsh, 15 years ago)

Fixes all validation errors on ms-options.php

  • wp-admin/ms-options.php

     
    5555                        <tr valign="top">
    5656                                <th scope="row"><?php _e( 'Global Terms' ) ?></th>
    5757                                <td>
    58                                 <label><input type="radio" id="global_terms_enabled" name="global_terms_enabled" value="0"<?php checked( get_site_option( 'global_terms_enabled' ), 0 ) ?>/> <?php _e( 'Disabled' ); ?></label><br/>
    59                                 <label><input type="radio" id="global_terms_enabled" name="global_terms_enabled" value="1"<?php checked( get_site_option( 'global_terms_enabled' ), 1 ) ?>/> <?php _e( 'Maintain a global list of terms from all sites across the network.' ); ?></label><br />
     58                                <label><input type="radio" name="global_terms_enabled" value="0"<?php checked( get_site_option( 'global_terms_enabled' ), 0 ) ?>/> <?php _e( 'Disabled' ); ?></label><br/>
     59                                <label><input type="radio" name="global_terms_enabled" value="1"<?php checked( get_site_option( 'global_terms_enabled' ), 1 ) ?>/> <?php _e( 'Maintain a global list of terms from all sites across the network.' ); ?></label><br />
    6060                                <?php if ( ! get_site_option( 'global_terms_enabled') ) { ?>
    6161                                <strong><?php _e( 'Warning!' ); ?></strong> <?php _e( 'Enabling global terms will create a new table and synchronize terms across the network.' ); ?>
    6262                                <?php } ?></td>
     
    175175                        <tr valign="top">
    176176                                <th scope="row"><label for="welcome_email"><?php _e( 'Welcome Email' ) ?></label></th>
    177177                                <td>
    178                                         <textarea name="welcome_email" id="welcome_email" rows="5" cols="45" class="large-text"><?php echo stripslashes( get_site_option( 'welcome_email' ) ) ?></textarea>
     178                                        <textarea name="welcome_email" id="welcome_email" rows="5" cols="45" class="large-text"><?php echo wp_htmledit_pre( stripslashes( get_site_option( 'welcome_email' ) ) ) ?></textarea>
    179179                                        <br />
    180180                                        <?php _e( 'The welcome email sent to new site owners.' ) ?>
    181181                                </td>
     
    183183                        <tr valign="top">
    184184                                <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th>
    185185                                <td>
    186                                 <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text"><?php echo stripslashes( get_site_option( 'welcome_user_email' ) ) ?></textarea>
     186                                <textarea name="welcome_user_email" id="welcome_user_email" rows="5" cols="45" class="large-text"><?php echo wp_htmledit_pre( stripslashes( get_site_option( 'welcome_user_email' ) ) ) ?></textarea>
    187187                                        <br />
    188188                                        <?php _e( 'The welcome email sent to new users.' ) ?>
    189189                                </td>
     
    191191                        <tr valign="top">
    192192                                <th scope="row"><label for="first_post"><?php _e( 'First Post' ) ?></label></th>
    193193                                <td>
    194                                         <textarea name="first_post" id="first_post" rows="5" cols="45" class="large-text"><?php echo stripslashes( get_site_option( 'first_post' ) ) ?></textarea>
     194                                        <textarea name="first_post" id="first_post" rows="5" cols="45" class="large-text"><?php echo wp_htmledit_pre( stripslashes( get_site_option( 'first_post' ) ) ) ?></textarea>
    195195                                        <br />
    196196                                        <?php _e( 'The first post on a new site.' ) ?>
    197197                                </td>
     
    199199                        <tr valign="top">
    200200                                <th scope="row"><label for="first_page"><?php _e( 'First Page' ) ?></label></th>
    201201                                <td>
    202                                         <textarea name="first_page" id="first_page" rows="5" cols="45" class="large-text"><?php echo stripslashes( get_site_option('first_page') ) ?></textarea>
     202                                        <textarea name="first_page" id="first_page" rows="5" cols="45" class="large-text"><?php echo wp_htmledit_pre( stripslashes( get_site_option('first_page') ) ) ?></textarea>
    203203                                        <br />
    204204                                        <?php _e( 'The first page on a new site.' ) ?>
    205205                                </td>
     
    207207                        <tr valign="top">
    208208                                <th scope="row"><label for="first_comment"><?php _e( 'First Comment' ) ?></label></th>
    209209                                <td>
    210                                         <textarea name="first_comment" id="first_comment" rows="5" cols="45" class="large-text"><?php echo stripslashes( get_site_option('first_comment') ) ?></textarea>
     210                                        <textarea name="first_comment" id="first_comment" rows="5" cols="45" class="large-text"><?php echo wp_htmledit_pre( stripslashes( get_site_option('first_comment') ) ) ?></textarea>
    211211                                        <br />
    212212                                        <?php _e( 'The first comment on a new site.' ) ?>
    213213                                </td>
     
    244244                                <th scope="row"><?php _e( 'Site upload space' ) ?></th>
    245245                                <td>
    246246                                <label><input type="checkbox" id="upload_space_check_disabled" name="upload_space_check_disabled" value="0"<?php checked( get_site_option( 'upload_space_check_disabled' ), 0 ) ?>/> <?php printf( __( 'Limit total size of files uploaded to %s MB' ), '<input name="blog_upload_space" type="text" id="blog_upload_space" value="' . esc_attr( get_site_option('blog_upload_space', 10) ) . '" size="3" />' ); ?></label><br />
     247                                </td>
    247248                        </tr>
    248249
    249250                        <tr valign="top">