Make WordPress Core


Ignore:
Timestamp:
12/28/2007 09:47:54 PM (17 years ago)
Author:
westi
Message:

Deprecate comments_rss and create_user.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/registration.php

    r6387 r6517  
    178178/**
    179179 * A simpler way of inserting an user into the database.
    180  * See also: wp_insert_user().
     180 * @see wp_insert_user().
    181181 * @global object $wpdb WordPress database layer.
    182182 * @param string $username The user's username.
     
    196196}
    197197
    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  * @deprecated
    205  */
    206 function create_user($username, $password, $email) {
    207     return wp_create_user($username, $password, $email);
    208 }
    209 
    210198?>
Note: See TracChangeset for help on using the changeset viewer.