Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/install.php

    r11833 r11393  
    5050
    5151function display_setup_form( $error = null ) {
    52         // Ensure that Blogs appear in search engines by default
    53         $blog_public = 1;
    54         if ( isset($_POST) && !empty($_POST) ) {
    55                 $blog_public = isset($_POST['blog_public']);
    56         }
    57        
    5852        if ( ! is_null( $error ) ) {
    5953?>
     
    7266                </tr>
    7367                <tr>
    74                         <td colspan="2"><label><input type="checkbox" name="blog_public" value="1" <?php checked($blog_public); ?> /> <?php _e('Allow my blog to appear in search engines like Google and Technorati.'); ?></label></td>
     68                        <td colspan="2"><label><input type="checkbox" name="blog_public" value="1"<?php if( isset($_POST) && ! empty($_POST) && isset( $_POST['blog_public'] ) ) : ?> checked="checked"<?php endif; ?> /> <?php _e('Allow my blog to appear in search engines like Google and Technorati.'); ?></label></td>
    7569                </tr>
    7670        </table>
Note: See TracChangeset for help on using the changeset viewer.