Make WordPress Core

Changeset 21860


Ignore:
Timestamp:
09/15/2012 08:05:58 PM (13 years ago)
Author:
nacin
Message:

Pass the user parameter to the wpmu_validate_blog_signup filter and wpmu_validate_blog_signup()'s return array. props BrianLayman. fixes #17306.

File:
1 edited

Legend:

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

    r21853 r21860  
    609609    }
    610610
    611     $result = array('domain' => $mydomain, 'path' => $path, 'blogname' => $blogname, 'blog_title' => $blog_title, 'errors' => $errors);
     611    $result = array('domain' => $mydomain, 'path' => $path, 'blogname' => $blogname, 'blog_title' => $blog_title, 'user' => $user, 'errors' => $errors);
    612612    return apply_filters('wpmu_validate_blog_signup', $result);
    613613}
     
    18751875/**
    18761876 * Formats a URL to use https.
    1877  * 
     1877 *
    18781878 * Useful as a filter.
    18791879 *
Note: See TracChangeset for help on using the changeset viewer.