Ticket #31117: 31117.2.patch
| File 31117.2.patch, 2.4 KB (added by , 11 years ago) |
|---|
-
wp-admin/options-discussion.php
200 200 201 201 <table class="form-table"> 202 202 <tr> 203 <th scope="row">< ?php _e('Avatar Display'); ?></th>203 <th scope="row"><label for="show_avatars"><?php _e('Avatar Display'); ?></label></th> 204 204 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Avatar Display'); ?></span></legend> 205 205 <label for="show_avatars"> 206 206 <input type="checkbox" id="show_avatars" name="show_avatars" value="1" <?php checked( $show_avatars, 1 ); ?> /> -
wp-admin/options-general.php
140 140 <p class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></p></td> 141 141 </tr> 142 142 <tr> 143 <th scope="row">< ?php _e('Membership') ?></th>143 <th scope="row"><label for="users_can_register"><?php _e('Membership') ?></label></th> 144 144 <td> <fieldset><legend class="screen-reader-text"><span><?php _e('Membership') ?></span></legend><label for="users_can_register"> 145 145 <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_option('users_can_register')); ?> /> 146 146 <?php _e('Anyone can register') ?></label> -
wp-admin/options-reading.php
139 139 </tr> 140 140 141 141 <tr class="option-site-visibility"> 142 <th scope="row"><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?> </th>142 <th scope="row"><?php echo has_action( 'blog_privacy_selector' ) ? __( 'Site Visibility' ) : '<label for="blog_public">' . __( 'Search Engine Visibility' ) . '</label>'; ?> </th> 143 143 <td><fieldset><legend class="screen-reader-text"><span><?php has_action( 'blog_privacy_selector' ) ? _e( 'Site Visibility' ) : _e( 'Search Engine Visibility' ); ?> </span></legend> 144 144 <?php if ( has_action( 'blog_privacy_selector' ) ) : ?> 145 145 <input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />