Changes in trunk/wp-admin/post.php [17228:17962]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/post.php
r17228 r17962 128 128 // output the quickpress dashboard widget 129 129 require_once(ABSPATH . 'wp-admin/includes/dashboard.php'); 130 wp_dashboard_quick_press _output();130 wp_dashboard_quick_press(); 131 131 exit; 132 132 } … … 162 162 $parent_file = "edit.php"; 163 163 $submenu_file = "edit.php"; 164 $post_new_file = "post-new.php"; 164 165 } else { 165 166 if ( isset( $post_type_object ) && $post_type_object->show_in_menu && $post_type_object->show_in_menu !== true ) … … 168 169 $parent_file = "edit.php?post_type=$post_type"; 169 170 $submenu_file = "edit.php?post_type=$post_type"; 171 $post_new_file = "post-new.php?post_type=$post_type"; 170 172 } 171 173
Note: See TracChangeset
for help on using the changeset viewer.