Changeset 14070 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 04/11/2010 10:41:54 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r13750 r14070 53 53 <input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> /> 54 54 <?php _e('Users must be registered and logged in to comment') ?> 55 <?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment )' ); ?>55 <?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment.)' ); ?> 56 56 </label> 57 57 <br /> … … 161 161 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Avatar Display') ?></span></legend> 162 162 <?php 163 $yesorno = array( 0 => __("Don’t show Avatars"), 1 => __('Show Avatars'));163 $yesorno = array( 0 => __( 'Don’t show Avatars' ), 1 => __( 'Show Avatars' ) ); 164 164 foreach ( $yesorno as $key => $value) { 165 165 $selected = (get_option('show_avatars') == $key) ? 'checked="checked"' : '';
Note: See TracChangeset
for help on using the changeset viewer.