Changeset 9967
- Timestamp:
- 11/29/2008 06:09:09 PM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-pages.php
r9914 r9967 68 68 if ( empty($title) ) 69 69 $title = __('Edit Pages'); 70 $parent_file = 'edit .php';70 $parent_file = 'edit-pages.php'; 71 71 wp_enqueue_script('inline-edit-post'); 72 72 -
trunk/wp-admin/link-category.php
r9032 r9967 63 63 case 'edit': 64 64 $title = __('Edit Category'); 65 $parent_file = ' edit.php';65 $parent_file = 'link-manager.php'; 66 66 $submenu_file = 'edit-link-categories.php'; 67 67 require_once ('admin-header.php'); -
trunk/wp-admin/link-import.php
r9912 r9967 11 11 /** Load WordPress Administration Bootstrap */ 12 12 require_once('admin.php'); 13 $parent_file = 'edit.php'; 13 $parent_file = 'tools.php'; 14 $submenu_file = 'import.php'; 14 15 $title = __('Import Blogroll'); 15 16 -
trunk/wp-admin/link-manager.php
r9903 r9967 42 42 43 43 $title = __('Edit Links'); 44 $this_file = $parent_file = ' edit.php';44 $this_file = $parent_file = 'link-manager.php'; 45 45 include_once ("./admin-header.php"); 46 46 -
trunk/wp-admin/media-upload.php
r9903 r9967 54 54 55 55 $title = __('Upload New Media'); 56 $parent_file = ' edit.php';56 $parent_file = 'upload.php'; 57 57 require_once('admin-header.php'); ?> 58 58 <div class="wrap"> -
trunk/wp-admin/update-core.php
r9903 r9967 196 196 if ( 'upgrade-core' == $action ) { 197 197 $title = __('Upgrade WordPress'); 198 $parent_file = ' index.php';198 $parent_file = 'tools.php'; 199 199 require_once('admin-header.php'); 200 200 core_upgrade_preamble(); … … 203 203 check_admin_referer('upgrade-core'); 204 204 $title = __('Upgrade WordPress'); 205 $parent_file = ' index.php';205 $parent_file = 'tools.php'; 206 206 // do the (un)dismiss actions before headers, 207 207 // so that they can redirect -
trunk/wp-admin/update.php
r9543 r9967 131 131 check_admin_referer('upgrade-plugin_' . $plugin); 132 132 $title = __('Upgrade Plugin'); 133 $parent_file = ' index.php';133 $parent_file = 'plugins.php'; 134 134 require_once('admin-header.php'); 135 135 do_plugin_upgrade($plugin); -
trunk/wp-admin/upload.php
r9914 r9967 102 102 103 103 $title = __('Media Library'); 104 $parent_file = ' edit.php';104 $parent_file = 'upload.php'; 105 105 106 106 if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
Note: See TracChangeset
for help on using the changeset viewer.