Remove duplicate label on installation screen.
props Ankit K Gupta. fixes #31131. Built from https://develop.svn.wordpress.org/trunk@31282 git-svn-id: http://core.svn.wordpress.org/trunk@31263 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
98da858b40
commit
5aadff88f6
|
@ -143,7 +143,7 @@ function display_setup_form( $error = null ) {
|
||||||
<p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td>
|
<p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="blog_public"><?php _e( 'Privacy' ); ?></label></th>
|
<th scope="row"><?php _e( 'Privacy' ); ?></th>
|
||||||
<td colspan="2"><label><input type="checkbox" name="blog_public" id="blog_public" value="1" <?php checked( $blog_public ); ?> /> <?php _e( 'Allow search engines to index this site.' ); ?></label></td>
|
<td colspan="2"><label><input type="checkbox" name="blog_public" id="blog_public" value="1" <?php checked( $blog_public ); ?> /> <?php _e( 'Allow search engines to index this site.' ); ?></label></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-alpha-31281';
|
$wp_version = '4.2-alpha-31282';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue