Changeset 15096
- Timestamp:
- 06/01/2010 06:02:05 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
wp-admin/export.php (modified) (1 diff)
-
wp-admin/includes/schema.php (modified) (1 diff)
-
wp-admin/includes/upgrade.php (modified) (2 diffs)
-
wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/export.php
r14989 r15096 10 10 require_once ('admin.php'); 11 11 12 if ( !current_user_can('e dit_files') )12 if ( !current_user_can('export') ) 13 13 wp_die(__('You do not have sufficient permissions to export the content of this site.')); 14 14 -
trunk/wp-admin/includes/schema.php
r14998 r15096 614 614 $role->add_cap( 'edit_theme_options' ); 615 615 $role->add_cap( 'delete_themes' ); 616 $role->add_cap( 'export' ); 616 617 } 617 618 } -
trunk/wp-admin/includes/upgrade.php
r15027 r15096 441 441 upgrade_290(); 442 442 443 if ( $wp_current_db_version < 1 4984)443 if ( $wp_current_db_version < 15093 ) 444 444 upgrade_300(); 445 445 … … 1109 1109 global $wp_current_db_version, $wpdb; 1110 1110 1111 if ( $wp_current_db_version < 1 4984)1111 if ( $wp_current_db_version < 15093 ) 1112 1112 populate_roles_300(); 1113 1113 -
trunk/wp-includes/version.php
r15093 r15096 16 16 * @global int $wp_db_version 17 17 */ 18 $wp_db_version = 150 84;18 $wp_db_version = 15093; 19 19 20 20 /**
Note: See TracChangeset
for help on using the changeset viewer.