Changeset 16438 for trunk/wp-includes/ms-admin-bar.php
- Timestamp:
- 11/17/2010 06:47:34 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-admin-bar.php
r16098 r16438 13 13 /* Get the settings we need for the current site */ 14 14 $matureaction = $current_blog->mature ? 'unmatureblog' : 'matureblog'; 15 $maturetext_confirm = $current_blog->mature ? 16 sprintf( 15 $maturetext_confirm = $current_blog->mature ? 16 sprintf( 17 17 esc_attr__( 'Are you sure you want to unmark %s as mature?' ), 18 18 $current_blog->domain 19 ) : 19 ) : 20 20 sprintf( 21 21 esc_attr__( 'Are you sure you want to mark %s as mature?' ), … … 25 25 $suspendaction = $current_blog->spam ? 'unspamblog' : 'spamblog'; 26 26 $suspendtext_confirm = $current_blog->spam ? 27 sprintf( 27 sprintf( 28 28 esc_attr__( 'Are you sure you want to unsuspend site %s?' ), 29 29 $current_blog->domain 30 ) : 30 ) : 31 31 sprintf( 32 32 esc_attr__( 'Are you sure you want to suspend site %s?' ), 33 33 $current_blog->domain 34 34 ); 35 35 36 36 $mature_url = network_admin_url( "edit.php?action=confirm&action2={$matureaction}&id={$current_blog->blog_id}&msg=" . urlencode( $maturetext_confirm ) ); 37 37 $suspend_url = network_admin_url( "edit.php?action=confirm&action2={$suspendaction}&id={$current_blog->blog_id}&msg=" . urlencode( $suspendtext_confirm ) );
Note: See TracChangeset
for help on using the changeset viewer.