Changes from trunk/wp-admin/install.php at r11393 to branches/2.8/wp-admin/install.php at r11833
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/install.php
r11393 r11833 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.