Make WordPress Core


Ignore:
Timestamp:
10/23/2013 02:37:54 PM (12 years ago)
Author:
ryan
Message:

Pinking shears

File:
1 edited

Legend:

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

    r25868 r25880  
    6363    $blog = get_blog_details( $blog_id );
    6464    /**
    65      * Fires before a blog is deleted. 
     65     * Fires before a blog is deleted.
    6666     *
    6767     * @since MU
     
    296296                );
    297297        update_option( $current_user->ID . '_new_email', $new_user_email );
    298        
     298
    299299        $email_text = __( 'Dear user,
    300300
     
    316316         *
    317317         * The following strings have a special meaning and will get replaced dynamically:
    318          * ###ADMIN_URL### The link to click on to confirm the email change. Required otherwise this functunalty is will break. 
    319          * ###EMAIL### The new email. 
     318         * ###ADMIN_URL### The link to click on to confirm the email change. Required otherwise this functunalty is will break.
     319         * ###EMAIL### The new email.
    320320         * ###SITENAME### The name of the site.
    321          * ###SITEURL### The URL to the site. 
     321         * ###SITEURL### The URL to the site.
    322322         *
    323323         * @since MU
     
    449449            /**
    450450             * Fires after the user is marked as a SPAM user.
    451              * 
     451             *
    452452             * @since 3.0.0
    453              * 
     453             *
    454454             * @param int $id ID of the user marked as SPAM.
    455455             */
     
    460460             *
    461461             * @since 3.0.0
    462              * 
     462             *
    463463             * @param int $id ID of the user marked as HAM.
    464464             */
     
    495495        'sv' => 'Swedish', 'ty' => 'Tahitian', 'ta' => 'Tamil', 'tt' => 'Tatar', 'te' => 'Telugu', 'tg' => 'Tajik', 'tl' => 'Tagalog', 'th' => 'Thai', 'bo' => 'Tibetan', 'ti' => 'Tigrinya', 'to' => 'Tonga (Tonga Islands)', 'tn' => 'Tswana', 'ts' => 'Tsonga', 'tk' => 'Turkmen', 'tr' => 'Turkish', 'tw' => 'Twi', 'ug' => 'Uighur; Uyghur', 'uk' => 'Ukrainian', 'ur' => 'Urdu', 'uz' => 'Uzbek',
    496496        've' => 'Venda', 'vi' => 'Vietnamese', 'vo' => 'Volapük', 'cy' => 'Welsh','wa' => 'Walloon','wo' => 'Wolof', 'xh' => 'Xhosa', 'yi' => 'Yiddish', 'yo' => 'Yoruba', 'za' => 'Zhuang; Chuang', 'zu' => 'Zulu' );
    497    
     497
    498498    /**
    499499     * Filter the language codes.
    500      * 
     500     *
    501501     * @since MU
    502502     *
     
    700700    if ( isset( $super_admins ) )
    701701        return false;
    702    
     702
    703703    /**
    704704     * Fires before the user is granted Super Admin privileges.
     
    717717        $super_admins[] = $user->user_login;
    718718        update_site_option( 'site_admins' , $super_admins );
    719        
     719
    720720        /**
    721721         * Fires after the user is granted Super Admin privileges.
     
    761761            unset( $super_admins[$key] );
    762762            update_site_option( 'site_admins', $super_admins );
    763            
     763
    764764            /**
    765765             * Fires after the user's Super Admin privileges are revoked.
Note: See TracChangeset for help on using the changeset viewer.