mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
Do not include space in the beginning of internationalized string
git-svn-id: https://develop.svn.wordpress.org/trunk@15448 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e1e6ce1e97
commit
1ed9585257
@ -60,7 +60,7 @@ include('./admin-header.php');
|
||||
<label for="comment_registration">
|
||||
<input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> />
|
||||
<?php _e('Users must be registered and logged in to comment') ?>
|
||||
<?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment.)' ); ?>
|
||||
<?php if ( !get_option( 'users_can_register' ) && is_multisite() ) echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' ); ?>
|
||||
</label>
|
||||
<br />
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user