Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/schema.php

    r14998 r15227  
    315315    'embed_size_w' => '',
    316316    'embed_size_h' => 600,
     317
     318    // 3.0
     319    'page_for_posts' => 0,
     320    'page_on_front' => 0,
    317321    );
    318322
     
    614618        $role->add_cap( 'edit_theme_options' );
    615619        $role->add_cap( 'delete_themes' );
     620        $role->add_cap( 'export' );
    616621    }
    617622}
     
    738743            $upload_path = substr( WP_CONTENT_DIR, strlen( ABSPATH ) ) . '/uploads';
    739744            update_option( 'upload_path', $upload_path );
    740             update_option( 'fileupload_url', get_option( 'siteurl' ) . '/' . $upload_path );
    741745        }
     746        update_option( 'fileupload_url', get_option( 'siteurl' ) . '/' . $upload_path );
    742747    }
    743748
Note: See TracChangeset for help on using the changeset viewer.