Changeset 25205 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 09/02/2013 03:32:49 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r25197 r25205 629 629 * @param array $meta By default, contains the requested privacy setting and lang_id. 630 630 */ 631 function wpmu_signup_blog( $domain, $path, $title, $user, $user_email, $meta = ''){631 function wpmu_signup_blog( $domain, $path, $title, $user, $user_email, $meta = array() ) { 632 632 global $wpdb; 633 633 … … 662 662 * @param array $meta By default, this is an empty array. 663 663 */ 664 function wpmu_signup_user( $user, $user_email, $meta = '') {664 function wpmu_signup_user( $user, $user_email, $meta = array() ) { 665 665 global $wpdb; 666 666 … … 705 705 * @param string $user The user's login name. 706 706 * @param string $user_email The user's email address. 707 * @param string $key The activation key created in wpmu_signup_blog() 707 708 * @param array $meta By default, contains the requested privacy setting and lang_id. 708 * @param string $key The activation key created in wpmu_signup_blog()709 709 * @return bool 710 710 */ 711 function wpmu_signup_blog_notification( $domain, $path, $title, $user, $user_email, $key, $meta = '') {711 function wpmu_signup_blog_notification( $domain, $path, $title, $user, $user_email, $key, $meta = array() ) { 712 712 global $current_site; 713 713 … … 766 766 * @param string $user The user's login name. 767 767 * @param string $user_email The user's email address. 768 * @param string $key The activation key created in wpmu_signup_user() 768 769 * @param array $meta By default, an empty array. 769 * @param string $key The activation key created in wpmu_signup_user()770 770 * @return bool 771 771 */ 772 function wpmu_signup_user_notification( $user, $user_email, $key, $meta = '') {772 function wpmu_signup_user_notification( $user, $user_email, $key, $meta = array() ) { 773 773 if ( !apply_filters('wpmu_signup_user_notification', $user, $user_email, $key, $meta) ) 774 774 return false; … … 938 938 * @return mixed Returns WP_Error object on failure, int $blog_id on success 939 939 */ 940 function wpmu_create_blog( $domain, $path, $title, $user_id, $meta = '', $site_id = 1 ) {940 function wpmu_create_blog( $domain, $path, $title, $user_id, $meta = array(), $site_id = 1 ) { 941 941 $defaults = array( 'public' => 0 ); 942 942 $meta = wp_parse_args( $meta, $defaults ); … … 1202 1202 * @return bool 1203 1203 */ 1204 function wpmu_welcome_notification( $blog_id, $user_id, $password, $title, $meta = '') {1204 function wpmu_welcome_notification( $blog_id, $user_id, $password, $title, $meta = array() ) { 1205 1205 global $current_site; 1206 1206 … … 1266 1266 * @return bool 1267 1267 */ 1268 function wpmu_welcome_user_notification( $user_id, $password, $meta = '') {1268 function wpmu_welcome_user_notification( $user_id, $password, $meta = array() ) { 1269 1269 global $current_site; 1270 1270
Note: See TracChangeset
for help on using the changeset viewer.