diff --git a/wp-admin/load-scripts.php b/wp-admin/load-scripts.php index b01ba30e2..ed9cc9ded 100644 --- a/wp-admin/load-scripts.php +++ b/wp-admin/load-scripts.php @@ -16,11 +16,6 @@ define( 'WPINC', 'wp-includes' ); */ function __() {} -/** - * @ignore - */ -function _c() {} - /** * @ignore */ diff --git a/wp-admin/load-styles.php b/wp-admin/load-styles.php index 1e10c47a9..e9673e26b 100644 --- a/wp-admin/load-styles.php +++ b/wp-admin/load-styles.php @@ -16,11 +16,6 @@ define( 'WPINC', 'wp-includes' ); */ function __() {} -/** - * @ignore - */ -function _c() {} - /** * @ignore */ diff --git a/wp-admin/ms-edit.php b/wp-admin/ms-edit.php index 167a2e563..984a480e9 100644 --- a/wp-admin/ms-edit.php +++ b/wp-admin/ms-edit.php @@ -489,7 +489,7 @@ switch ( $_GET['action'] ) { elseif ( empty($user['email']) ) wp_die( __('Missing email.') ); - $password = generate_random_password(); + $password = wp_generate_password(); $user_id = wpmu_create_user(wp_specialchars( strtolower( $user['username'] ) ), $password, wp_specialchars( $user['email'] ) ); if ( false == $user_id )