Changeset 25616 for trunk/src/wp-admin/post-new.php
- Timestamp:
- 09/25/2013 12:17:40 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/post-new.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/post-new.php
r25453 r25616 8 8 9 9 /** Load WordPress Administration Bootstrap */ 10 require_once( './admin.php');10 require_once( dirname( __FILE__ ) . '/admin.php' ); 11 11 12 12 if ( !isset($_GET['post_type']) ) … … 63 63 $post = get_default_post_to_edit( $post_type, true ); 64 64 $post_ID = $post->ID; 65 include( 'edit-form-advanced.php');66 include( './admin-footer.php');65 include( ABSPATH . 'wp-admin/edit-form-advanced.php' ); 66 include( ABSPATH . 'wp-admin/admin-footer.php' );
Note: See TracChangeset
for help on using the changeset viewer.