Changeset 9232
- Timestamp:
- 10/17/2008 08:02:03 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 34 edited
-
wp-admin/categories.php (modified) (1 diff)
-
wp-admin/edit-comments.php (modified) (1 diff)
-
wp-admin/edit-link-categories.php (modified) (1 diff)
-
wp-admin/edit-link-form.php (modified) (1 diff)
-
wp-admin/edit-page-form.php (modified) (1 diff)
-
wp-admin/edit-pages.php (modified) (2 diffs)
-
wp-admin/edit-tags.php (modified) (1 diff)
-
wp-admin/export.php (modified) (1 diff)
-
wp-admin/import.php (modified) (1 diff)
-
wp-admin/index.php (modified) (1 diff)
-
wp-admin/link-add.php (modified) (1 diff)
-
wp-admin/link-manager.php (modified) (2 diffs)
-
wp-admin/media-new.php (modified) (1 diff)
-
wp-admin/media-upload.php (modified) (2 diffs)
-
wp-admin/options-discussion.php (modified) (1 diff)
-
wp-admin/options-general.php (modified) (1 diff)
-
wp-admin/options-media.php (modified) (1 diff)
-
wp-admin/options-misc.php (modified) (1 diff)
-
wp-admin/options-permalink.php (modified) (1 diff)
-
wp-admin/options-privacy.php (modified) (1 diff)
-
wp-admin/options-reading.php (modified) (1 diff)
-
wp-admin/options-writing.php (modified) (1 diff)
-
wp-admin/page-new.php (modified) (1 diff)
-
wp-admin/plugin-editor.php (modified) (1 diff)
-
wp-admin/plugin-install.php (modified) (1 diff)
-
wp-admin/plugins.php (modified) (1 diff)
-
wp-admin/theme-editor.php (modified) (1 diff)
-
wp-admin/themes.php (modified) (1 diff)
-
wp-admin/turbo.php (modified) (1 diff)
-
wp-admin/upload.php (modified) (1 diff)
-
wp-admin/user-edit.php (modified) (1 diff)
-
wp-admin/users.php (modified) (1 diff)
-
wp-admin/widgets.php (modified) (1 diff)
-
wp-content/themes/default/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r9223 r9232 141 141 142 142 <div class="wrap"> 143 <h2><?php echo $title ?></h2> 143 144 144 145 <ul class="subsubsub"><li class="current"><a class="current"><br /></a></li></ul> -
trunk/wp-admin/edit-comments.php
r9231 r9232 122 122 123 123 <div class="wrap"> 124 <h2><?php echo $title ?></h2> 124 125 125 126 <ul class="subsubsub"> -
trunk/wp-admin/edit-link-categories.php
r9223 r9232 77 77 78 78 <div class="wrap"> 79 <h2><?php echo $title ?></h2> 79 80 80 81 <ul class="subsubsub"><li><a class="current"><br /></a></li></ul> -
trunk/wp-admin/edit-link-form.php
r9223 r9232 321 321 322 322 <div class="wrap"> 323 <h2><?php echo $title ?></h2> 323 324 324 325 <!-- -
trunk/wp-admin/edit-page-form.php
r9168 r9232 359 359 360 360 <div class="wrap"> 361 <h2><?php echo $title ?></h2> 361 362 362 363 <form name="post" action="page.php" method="post" id="post"> -
trunk/wp-admin/edit-pages.php
r9217 r9232 67 67 68 68 if ( empty($title) ) 69 $title = __(' View AllPages');69 $title = __('Edit Pages'); 70 70 $parent_file = 'edit.php'; 71 71 wp_enqueue_script('admin-forms'); … … 136 136 137 137 <div class="wrap"> 138 <h2><?php echo $title ?></h2> 139 138 140 <ul class="subsubsub"> 139 141 <?php -
trunk/wp-admin/edit-tags.php
r9223 r9232 144 144 145 145 <div class="wrap"> 146 <h2><?php echo $title ?></h2> 146 147 147 148 <ul class="subsubsub"><li class="current"><a class="current"><br /></a></li></ul> -
trunk/wp-admin/export.php
r9032 r9232 23 23 24 24 <div class="wrap"> 25 <h2><?php echo $title ?></h2> 26 25 27 <p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p> 26 28 <p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'); ?></p> -
trunk/wp-admin/import.php
r9032 r9232 14 14 15 15 <div class="wrap"> 16 <h2><?php echo $title ?></h2> 16 17 <p><?php _e('If you have posts or comments in another system, WordPress can import those into this blog. To get started, choose a system to import from below:'); ?></p> 17 18 -
trunk/wp-admin/index.php
r9219 r9232 39 39 40 40 <div class="wrap"> 41 <h2><?php echo $title ?></h2> 42 41 43 <div id="dashboard-widgets-wrap"> 42 44 -
trunk/wp-admin/link-add.php
r8977 r9232 10 10 require_once('admin.php'); 11 11 12 $title = __('Add Link');12 $title = __('Add New Link'); 13 13 $parent_file = 'link-manager.php'; 14 14 -
trunk/wp-admin/link-manager.php
r9223 r9232 46 46 $order_by = 'order_name'; 47 47 48 $title = __(' ManageLinks');48 $title = __('Edit Links'); 49 49 $this_file = $parent_file = 'edit.php'; 50 50 include_once ("./admin-header.php"); … … 96 96 97 97 <div class="wrap"> 98 <h2><?php echo $title ?></h2> 98 99 99 100 <div class="filter"> -
trunk/wp-admin/media-new.php
r9052 r9232 10 10 /** Administration bootstrap */ 11 11 require_once('admin.php'); 12 $title = __('Upload New Media');13 12 require_once('media-upload.php'); 14 13 -
trunk/wp-admin/media-upload.php
r9223 r9232 32 32 33 33 if ( isset($_GET['inline']) ) { 34 34 35 35 if ( isset($_GET['upload-page-form']) ) { 36 36 $errors = media_upload_form_handler(); … … 53 53 } 54 54 55 $title = __('Upload Media');55 $title = __('Upload New Media'); 56 56 $parent_file = 'edit.php'; 57 57 require_once('admin-header.php'); ?> 58 58 <div class="wrap"> 59 <h2><?php echo $title ?></h2> 59 60 60 61 <form enctype="multipart/form-data" method="post" action="media-upload.php?inline=&upload-page-form=" class="media-upload-form type-form validate" id="file-form"> 61 62 62 63 <?php media_upload_form(); ?> 63 64 64 65 <script type="text/javascript"> 65 66 jQuery(function($){ -
trunk/wp-admin/options-discussion.php
r9228 r9232 17 17 18 18 <div class="wrap"> 19 <h2><?php echo $title ?></h2> 20 19 21 <form method="post" action="options.php"> 20 22 <input type='hidden' name='option_page' value='discussion' /> -
trunk/wp-admin/options-general.php
r9223 r9232 50 50 51 51 <div class="wrap"> 52 <h2><?php echo $title ?></h2> 53 52 54 <form method="post" action="options.php"> 53 55 <input type='hidden' name='option_page' value='general' /> -
trunk/wp-admin/options-media.php
r9149 r9232 18 18 19 19 <div class="wrap"> 20 <h2><?php echo $title ?></h2> 20 21 21 22 <form action="options.php" method="post"> -
trunk/wp-admin/options-misc.php
r9149 r9232 18 18 19 19 <div class="wrap"> 20 <h2><?php echo $title ?></h2> 21 20 22 <form method="post" action="options.php"> 21 23 <input type='hidden' name='option_page' value='misc' /> -
trunk/wp-admin/options-permalink.php
r9149 r9232 124 124 125 125 <div class="wrap"> 126 <h2><?php echo $title ?></h2> 127 126 128 <form name="form" action="options-permalink.php" method="post"> 127 129 <?php wp_nonce_field('update-permalink') ?> -
trunk/wp-admin/options-privacy.php
r9149 r9232 17 17 18 18 <div class="wrap"> 19 <h2><?php echo $title ?></h2> 20 19 21 <form method="post" action="options.php"> 20 22 <?php wp_nonce_field('privacy-options') ?> -
trunk/wp-admin/options-reading.php
r9149 r9232 17 17 18 18 <div class="wrap"> 19 <h2><?php echo $title ?></h2> 20 19 21 <form name="form1" method="post" action="options.php"> 20 22 <?php wp_nonce_field('reading-options') ?> -
trunk/wp-admin/options-writing.php
r9223 r9232 17 17 18 18 <div class="wrap"> 19 <h2><?php echo $title ?></h2> 20 19 21 <form method="post" action="options.php"> 20 22 <?php wp_nonce_field('writing-options') ?> -
trunk/wp-admin/page-new.php
r8977 r9232 9 9 /** WordPress Administration Bootstrap */ 10 10 require_once('admin.php'); 11 $title = __(' New Page');11 $title = __('Add New Page'); 12 12 $parent_file = 'edit-pages.php'; 13 13 $editing = true; -
trunk/wp-admin/plugin-editor.php
r9032 r9232 97 97 <?php endif; ?> 98 98 <div class="wrap"> 99 <h2><?php echo $title ?></h2> 100 99 101 <div class="tablenav"> 100 102 <div class="alignleft"> -
trunk/wp-admin/plugin-install.php
r9144 r9232 53 53 ?> 54 54 <div class="wrap"> 55 <h2><?php echo $title ?></h2> 56 55 57 <ul class="subsubsub"> 56 58 <?php -
trunk/wp-admin/plugins.php
r9223 r9232 204 204 205 205 <div class="wrap"> 206 <h2><?php echo $title ?></h2> 207 206 208 <p><?php _e('Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'); ?></p> 207 209 <?php -
trunk/wp-admin/theme-editor.php
r8845 r9232 100 100 ?> 101 101 <div class="wrap"> 102 <h2><?php echo $title ?></h2> 102 103 <div class="bordertitle"> 103 <h2><?php _e('Theme Editor'); ?></h2>104 104 <form id="themeselector" action="theme-editor.php" method="post"> 105 105 <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong> -
trunk/wp-admin/themes.php
r9227 r9232 99 99 100 100 <div class="wrap"> 101 <h2><?php echo $title ?></h2> 102 101 103 <h2><?php _e('Current Theme'); ?></h2> 102 104 <div id="current-theme"> -
trunk/wp-admin/turbo.php
r9068 r9232 18 18 ?> 19 19 <div id="gears-info-box" class="wrap"> 20 <h2><?php echo $title ?></h2> 21 20 22 <img src="images/gear.png" title="Gear" alt="" class="gears-img" /> 21 23 <div id="gears-msg1"> -
trunk/wp-admin/upload.php
r9217 r9232 184 184 185 185 <div class="wrap"> 186 <h2><?php echo $title ?></h2> 186 187 187 188 <ul class="subsubsub"> -
trunk/wp-admin/user-edit.php
r9217 r9232 178 178 179 179 <div class="wrap" id="profile-page"> 180 <h2><?php echo $title ?></h2> 180 181 181 182 <form id="your-profile" action="" method="post"> -
trunk/wp-admin/users.php
r9223 r9232 265 265 266 266 <div class="wrap"> 267 <h2><?php echo $title ?></h2> 267 268 268 269 <form id="posts-filter" action="" method="get"> -
trunk/wp-admin/widgets.php
r9194 r9232 234 234 235 235 <div class="wrap"> 236 <h2><?php echo $title ?></h2> 236 237 237 238 <form id="widgets-filter" action="" method="get"> -
trunk/wp-content/themes/default/functions.php
r9032 r9232 364 364 ?> 365 365 <div class='wrap'> 366 <h2><?php _e('Customize Header'); ?></h2> 366 367 <div id="kubrick-header"> 367 368 <div id="headwrap">
Note: See TracChangeset
for help on using the changeset viewer.