Make WordPress Core


Ignore:
Timestamp:
10/18/2008 08:46:30 PM (17 years ago)
Author:
ryan
Message:

phpdoc corrections from jacobsantos. see #7918

File:
1 edited

Legend:

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

    r9106 r9243  
    647647 * Saves and restores user interface settings stored in a cookie.
    648648 *
     649 * Checks if the current user-settings cookie is updated and stores it. When no
     650 * cookie exists (different browser used), adds the last saved cookie restoring
     651 * the settings.
     652 *
    649653 * @package WordPress
    650654 * @subpackage Option
    651655 * @since 2.7.0
    652  *
    653  * Checks if the current user-settings cookie is updated and stores it.
    654  * When no cookie exists (different browser used), adds the last saved cookie restoring the settings.
    655656 */
    656657function wp_user_settings() {
     
    691692 * @package WordPress
    692693 * @subpackage Option
    693  * @since 2.7.0 
    694  *   
     694 * @since 2.7.0
     695 *
    695696 * @param string $name The name of the setting.
    696697 * @param string $default Optional default value to return when $name is not set.
     
    707708 * Delete user interface settings.
    708709 *
     710 * Deleting settings would reset them to the defaults.
     711 *
    709712 * @package WordPress
    710713 * @subpackage Option
    711714 * @since 2.7.0
    712  *
    713  * Deleting settings would reset them to the defaults.
    714715 *
    715716 * @param mixed $names The name or array of names of the setting to be deleted.
     
    764765}
    765766
     767/**
     768 * Delete the user settings of the current user.
     769 *
     770 * @package WordPress
     771 * @subpackage Option
     772 * @since 2.7.0
     773 */
    766774function delete_all_user_settings() {
    767775    if ( ! $user = wp_get_current_user() )
Note: See TracChangeset for help on using the changeset viewer.