Make WordPress Core


Ignore:
Timestamp:
11/17/2010 06:47:34 PM (14 years ago)
Author:
ryan
Message:

Pinking shears

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-admin-bar.php

    r16098 r16438  
    1313    /* Get the settings we need for the current site */
    1414    $matureaction = $current_blog->mature ? 'unmatureblog' : 'matureblog';
    15     $maturetext_confirm = $current_blog->mature ? 
    16         sprintf( 
     15    $maturetext_confirm = $current_blog->mature ?
     16        sprintf(
    1717            esc_attr__( 'Are you sure you want to unmark %s as mature?' ),
    1818            $current_blog->domain
    19         ) : 
     19        ) :
    2020        sprintf(
    2121            esc_attr__( 'Are you sure you want to mark %s as mature?' ),
     
    2525    $suspendaction = $current_blog->spam ? 'unspamblog' : 'spamblog';
    2626    $suspendtext_confirm = $current_blog->spam ?
    27         sprintf( 
     27        sprintf(
    2828            esc_attr__( 'Are you sure you want to unsuspend site %s?' ),
    2929            $current_blog->domain
    30         ) : 
     30        ) :
    3131        sprintf(
    3232            esc_attr__( 'Are you sure you want to suspend site %s?' ),
    3333            $current_blog->domain
    3434        );
    35        
     35
    3636    $mature_url = network_admin_url( "edit.php?action=confirm&action2={$matureaction}&id={$current_blog->blog_id}&msg=" . urlencode( $maturetext_confirm ) );
    3737    $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.