Changeset 11765
- Timestamp:
- 08/02/2009 02:24:43 AM (15 years ago)
- Location:
- branches/2.8/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/edit-category-form.php
r11609 r11765 6 6 * @subpackage Administration 7 7 */ 8 9 if ( !current_user_can('manage_categories') ) 10 wp_die(__('You do not have sufficient permissions to edit categories for this blog.')); 8 11 9 12 /** -
branches/2.8/wp-admin/edit-link-category-form.php
r11609 r11765 6 6 * @subpackage Administration 7 7 */ 8 9 if ( !current_user_can('manage_categories') ) 10 wp_die(__('You do not have sufficient permissions to edit link categories for this blog.')); 8 11 9 12 /** -
branches/2.8/wp-admin/edit-tag-form.php
r11609 r11765 6 6 * @subpackage Administration 7 7 */ 8 9 if ( !current_user_can('manage_categories') ) 10 wp_die(__('You do not have sufficient permissions to edit tags for this blog.')); 8 11 9 12 if ( empty($tag_ID) ) { ?> -
branches/2.8/wp-admin/export.php
r11380 r11765 9 9 /** Load WordPress Bootstrap */ 10 10 require_once ('admin.php'); 11 12 if ( !current_user_can('edit_files') ) 13 wp_die(__('You do not have sufficient permissions to export the content of this blog.')); 11 14 12 15 /** Load WordPress export API */ -
branches/2.8/wp-admin/import.php
r11380 r11765 9 9 /** Load WordPress Bootstrap */ 10 10 require_once ('admin.php'); 11 12 if ( !current_user_can('edit_files') ) 13 wp_die(__('You do not have sufficient permissions to import content in this blog.')); 14 11 15 $title = __('Import'); 12 16 require_once ('admin-header.php'); -
branches/2.8/wp-admin/link-add.php
r9620 r11765 9 9 /** Load WordPress Administration Bootstrap */ 10 10 require_once('admin.php'); 11 12 if ( ! current_user_can('manage_links') ) 13 wp_die(__('You do not have sufficient permissions to add links to this blog.')); 11 14 12 15 $title = __('Add New Link');
Note: See TracChangeset
for help on using the changeset viewer.