Changeset 14736
- Timestamp:
- 05/19/2010 05:23:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/ms-options.php
r14734 r14736 56 56 <th scope="row"><?php _e( 'Global Terms' ) ?></th> 57 57 <td> 58 <label><input type="radio" name="global_terms_enabled" value="0"<?php checked( !! get_site_option( 'global_terms_enabled'), false ) ?>/> <?php _e( 'Disabled' ); ?></label><br/>59 <label><input type="radio" name="global_terms_enabled" value="1"<?php checked( !! get_site_option( 'global_terms_enabled'), true ) ?>/> <?php _e( 'Maintain a global list of terms from all sites across the network.' ); ?></label><br />58 <label><input type="radio" name="global_terms_enabled" value="0"<?php checked( global_terms_enabled(), false ) ?>/> <?php _e( 'Disabled' ); ?></label><br/> 59 <label><input type="radio" name="global_terms_enabled" value="1"<?php checked( global_terms_enabled(), true ) ?>/> <?php _e( 'Maintain a global list of terms from all sites across the network.' ); ?></label><br /> 60 60 <?php if ( ! get_site_option( 'global_terms_enabled') ) { ?> 61 61 <strong><?php _e( 'Warning!' ); ?></strong> <?php _e( 'Enabling global terms will create a new table and synchronize terms across the network.' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.