Changeset 12022 for trunk/wp-admin/edit-page-form.php
- Timestamp:
- 10/13/2009 10:02:42 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r12020 r12022 76 76 require_once('includes/meta-boxes.php'); 77 77 78 add_meta_box('pagesubmitdiv', __('Publish'), 'post_submit_meta_box', 'page', 'side', 'core'); 79 // add_meta_box('pagepassworddiv', __('Privacy Options'), 'post_password_meta_box', 'page', 'side', 'core'); 78 add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', 'page', 'side', 'core'); 80 79 add_meta_box('pageparentdiv', __('Attributes'), 'page_attributes_meta_box', 'page', 'side', 'core'); 81 add_meta_box('p agecustomdiv', __('Custom Fields'), 'post_custom_meta_box', 'page', 'normal', 'core');82 add_meta_box(' pagecommentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'page', 'normal', 'core');83 add_meta_box(' pageslugdiv', __('Page Slug'), 'post_slug_meta_box', 'page', 'normal', 'core');80 add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', 'page', 'normal', 'core'); 81 add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'page', 'normal', 'core'); 82 add_meta_box('slugdiv', __('Page Slug'), 'post_slug_meta_box', 'page', 'normal', 'core'); 84 83 85 84 $authors = get_editable_user_ids( $current_user->id, true, 'page' ); // TODO: ROLE SYSTEM
Note: See TracChangeset
for help on using the changeset viewer.