Changeset 6517 for trunk/wp-includes/registration.php
- Timestamp:
- 12/28/2007 09:47:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/registration.php
r6387 r6517 178 178 /** 179 179 * A simpler way of inserting an user into the database. 180 * See also:wp_insert_user().180 * @see wp_insert_user(). 181 181 * @global object $wpdb WordPress database layer. 182 182 * @param string $username The user's username. … … 196 196 } 197 197 198 /**199 * An alias of wp_create_user().200 * @param string $username The user's username.201 * @param string $password The user's password.202 * @param string $email The user's email (optional).203 * @return int The new user's ID.204 * @deprecated205 */206 function create_user($username, $password, $email) {207 return wp_create_user($username, $password, $email);208 }209 210 198 ?>
Note: See TracChangeset
for help on using the changeset viewer.