Make WordPress Core

Changeset 12547


Ignore:
Timestamp:
12/26/2009 04:48:24 PM (15 years ago)
Author:
westi
Message:

phpDoc for wp_reset_vars().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/misc.php

    r12513 r12547  
    228228
    229229/**
    230  * {@internal Missing Short Description}}
    231  *
    232  * @since unknown
    233  *
    234  * @param unknown_type $vars
     230 * Resets global variables based on $_GET and $_POST
     231 *
     232 * This function resets global variables based on the names passed
     233 * in the $vars array to the value of $_POST[$var] or $_GET[$var] or ''
     234 * if neither is defined.
     235 *
     236 * @since unknown
     237 *
     238 * @param array $vars An array of globals to reset.
    235239 */
    236240function wp_reset_vars( $vars ) {
Note: See TracChangeset for help on using the changeset viewer.