Changeset 11832 for trunk/wp-admin/install.php
- Timestamp:
- 08/16/2009 09:01:39 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install.php
r11393 r11832 50 50 51 51 function 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 52 58 if ( ! is_null( $error ) ) { 53 59 ?> … … 66 72 </tr> 67 73 <tr> 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>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> 69 75 </tr> 70 76 </table>
Note: See TracChangeset
for help on using the changeset viewer.