Changeset 25880 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 10/23/2013 02:37:54 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r25868 r25880 63 63 $blog = get_blog_details( $blog_id ); 64 64 /** 65 * Fires before a blog is deleted. 65 * Fires before a blog is deleted. 66 66 * 67 67 * @since MU … … 296 296 ); 297 297 update_option( $current_user->ID . '_new_email', $new_user_email ); 298 298 299 299 $email_text = __( 'Dear user, 300 300 … … 316 316 * 317 317 * 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. 320 320 * ###SITENAME### The name of the site. 321 * ###SITEURL### The URL to the site. 321 * ###SITEURL### The URL to the site. 322 322 * 323 323 * @since MU … … 449 449 /** 450 450 * Fires after the user is marked as a SPAM user. 451 * 451 * 452 452 * @since 3.0.0 453 * 453 * 454 454 * @param int $id ID of the user marked as SPAM. 455 455 */ … … 460 460 * 461 461 * @since 3.0.0 462 * 462 * 463 463 * @param int $id ID of the user marked as HAM. 464 464 */ … … 495 495 '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', 496 496 '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 498 498 /** 499 499 * Filter the language codes. 500 * 500 * 501 501 * @since MU 502 502 * … … 700 700 if ( isset( $super_admins ) ) 701 701 return false; 702 702 703 703 /** 704 704 * Fires before the user is granted Super Admin privileges. … … 717 717 $super_admins[] = $user->user_login; 718 718 update_site_option( 'site_admins' , $super_admins ); 719 719 720 720 /** 721 721 * Fires after the user is granted Super Admin privileges. … … 761 761 unset( $super_admins[$key] ); 762 762 update_site_option( 'site_admins', $super_admins ); 763 763 764 764 /** 765 765 * Fires after the user's Super Admin privileges are revoked.
Note: See TracChangeset
for help on using the changeset viewer.