Make WordPress Core


Ignore:
Timestamp:
01/06/2011 04:11:14 AM (14 years ago)
Author:
ryan
Message:

Bring out the shears.

File:
1 edited

Legend:

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

    r17218 r17228  
    456456 * at wp-admin/network/settings.php. The check is only run on
    457457 * self-registrations; user creation at wp-admin/network/users.php
    458  * bypasses this check. 
     458 * bypasses this check.
    459459 *
    460460 * @since MU
     
    613613 * effectively an override of this limitation.
    614614 *
    615  * Filter 'wpmu_validate_blog_signup' if you want to modify 
     615 * Filter 'wpmu_validate_blog_signup' if you want to modify
    616616 * the way that WordPress validates new site signups.
    617617 *
     
    15781578 * Check an array of MIME types against a whitelist.
    15791579 *
    1580  * WordPress ships with a set of allowed upload filetypes, 
     1580 * WordPress ships with a set of allowed upload filetypes,
    15811581 * which is defined in wp-includes/functions.php in
    15821582 * get_allowed_mime_types(). This function is used to filter
    1583  * that list against the filetype whitelist provided by Multisite 
    1584  * Super Admins at wp-admin/network/settings.php. 
     1583 * that list against the filetype whitelist provided by Multisite
     1584 * Super Admins at wp-admin/network/settings.php.
    15851585 *
    15861586 * @since MU
     
    18071807 * @since MU
    18081808 * @uses add_existing_user_to_blog()
    1809  */ 
     1809 */
    18101810function maybe_add_existing_user_to_blog() {
    18111811    if ( false === strpos( $_SERVER[ 'REQUEST_URI' ], '/newbloguser/' ) )
     
    18331833 * @since MU
    18341834 * @uses add_user_to_blog()
    1835  * 
     1835 *
    18361836 * @param array $details
    1837  */ 
     1837 */
    18381838function add_existing_user_to_blog( $details = false ) {
    18391839    global $blog_id;
     
    18501850 *
    18511851 * @since MU
    1852  * 
     1852 *
    18531853 * @param int $user_id
    18541854 * @param string $email
    18551855 * @param array $meta
    1856  */ 
     1856 */
    18571857function add_new_user_to_blog( $user_id, $email, $meta ) {
    18581858    global $current_site;
     
    18701870 *
    18711871 * @since MU
    1872  */ 
     1872 */
    18731873function fix_phpmailer_messageid( $phpmailer ) {
    18741874    global $current_site;
     
    18851885 * @param string $username
    18861886 * @return bool
    1887  */ 
     1887 */
    18881888function is_user_spammy( $username = 0 ) {
    18891889    if ( $username == 0 ) {
     
    19081908 * @param int $value The new public value
    19091909 * @return bool
    1910  */ 
     1910 */
    19111911function update_blog_public( $old_value, $value ) {
    19121912    global $wpdb;
     
    19231923 *
    19241924 * @return int
    1925  */ 
     1925 */
    19261926function get_dashboard_blog() {
    19271927    if ( $blog = get_site_option( 'dashboard_blog' ) )
     
    19411941 * @param int $blog_id Optional. Defaults to current blog.
    19421942 * @return bool
    1943  */ 
     1943 */
    19441944function is_user_option_local( $key, $user_id = 0, $blog_id = 0 ) {
    19451945    global $wpdb;
     
    19651965 *
    19661966 * @return bool
    1967  */ 
     1967 */
    19681968function users_can_register_signup_filter() {
    19691969    $registration = get_site_option('registration');
     
    19821982 * @param string $text
    19831983 * @return string
    1984  */ 
     1984 */
    19851985function welcome_user_msg_filter( $text ) {
    19861986    if ( !$text ) {
Note: See TracChangeset for help on using the changeset viewer.