Changeset 10553 for trunk/wp-admin/includes/schema.php
- Timestamp:
- 02/11/2009 11:10:11 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r10476 r10553 328 328 populate_roles_260(); 329 329 populate_roles_270(); 330 populate_roles_280(); 330 331 } 331 332 … … 531 532 } 532 533 534 /** 535 * Create and modify WordPress roles for WordPress 2.8. 536 * 537 * @since 2.8.0 538 */ 539 function populate_roles_280() { 540 $role =& get_role( 'administrator' ); 541 542 if ( !empty( $role ) ) { 543 $role->add_cap( 'install_themes' ); 544 } 545 } 546 533 547 ?>
Note: See TracChangeset
for help on using the changeset viewer.