Make WordPress Core

Changeset 15448


Ignore:
Timestamp:
07/19/2010 08:36:30 PM (14 years ago)
Author:
nbachiyski
Message:

Do not include space in the beginning of internationalized string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-discussion.php

    r15132 r15448  
    6161<input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> />
    6262<?php _e('Users must be registered and logged in to comment') ?>
    63 <?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment.)' ); ?>
     63<?php if ( !get_option( 'users_can_register' ) && is_multisite() ) echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' ); ?>
    6464</label>
    6565<br />
Note: See TracChangeset for help on using the changeset viewer.