Changeset 8656 for trunk/wp-admin/post.php
- Timestamp:
- 08/16/2008 07:27:34 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/post.php
r8625 r8656 1 1 <?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 */ 2 12 require_once('admin.php'); 3 13 … … 7 17 wp_reset_vars(array('action', 'safe_mode', 'withcomments', 'posts', 'content', 'edited_post_title', 'comment_error', 'profile', 'trackback_url', 'excerpt', 'showcomments', 'commentstart', 'commentend', 'commentorder')); 8 18 19 /** 20 * Redirect to previous page. 21 * 22 * @param int $post_ID Optional. Post ID. 23 */ 9 24 function redirect_post($post_ID = '') { 10 25 global $action;
Note: See TracChangeset
for help on using the changeset viewer.