Make WordPress Core


Ignore:
Timestamp:
08/16/2008 07:27:34 AM (17 years ago)
Author:
westi
Message:

More phpdoc updates for wp-adming. See #7496 props santosj.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/post.php

    r8625 r8656  
    11<?php
     2/**
     3 * Edit post administration panel.
     4 *
     5 * Manage Post actions: post, edit, delete, etc.
     6 *
     7 * @package WordPress
     8 * @subpackage Administration
     9 */
     10
     11/** WordPress Administration Bootstrap */
    212require_once('admin.php');
    313
     
    717wp_reset_vars(array('action', 'safe_mode', 'withcomments', 'posts', 'content', 'edited_post_title', 'comment_error', 'profile', 'trackback_url', 'excerpt', 'showcomments', 'commentstart', 'commentend', 'commentorder'));
    818
     19/**
     20 * Redirect to previous page.
     21 *
     22 * @param int $post_ID Optional. Post ID.
     23 */
    924function redirect_post($post_ID = '') {
    1025    global $action;
Note: See TracChangeset for help on using the changeset viewer.