Make WordPress Core


Ignore:
Timestamp:
08/14/2008 06:30:38 AM (17 years ago)
Author:
westi
Message:

phpdoc for wp-admin. See #7496 props santosj.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-head.php

    r6833 r8645  
    1 <?php wp_reset_vars(array('action', 'standalone', 'option_group_id')); ?>
     1<?php
     2/**
     3 * WordPress Options Header.
     4 *
     5 * Resets variables: 'action', 'standalone', and 'option_group_id'. Displays
     6 * updated message, if updated variable is part of the URL query.
     7 *
     8 * @package WordPress
     9 * @subpackage Administration
     10 */
     11
     12wp_reset_vars(array('action', 'standalone', 'option_group_id'));
     13?>
    214
    315<?php if (isset($_GET['updated'])) : ?>
Note: See TracChangeset for help on using the changeset viewer.