Make WordPress Core

Ticket #25020: 25020.2.diff

File 25020.2.diff, 3.1 KB (added by jeremyfelt, 11 years ago)
  • src/wp-admin/includes/schema.php

     
    891891--The Team @ SITE_NAME' );
    892892
    893893        $sitemeta = array(
    894                 'site_name' => $site_name,
    895                 'admin_email' => $site_user->user_email,
    896                 'admin_user_id' => $site_user->ID,
    897                 'registration' => 'none',
    898                 'upload_filetypes' => 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf',
    899                 'blog_upload_space' => 100,
    900                 'fileupload_maxk' => 1500,
    901                 'site_admins' => $site_admins,
    902                 'allowedthemes' => $allowed_themes,
    903                 'illegal_names' => array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', 'files' ),
    904                 'wpmu_upgrade_site' => $wp_db_version,
    905                 'welcome_email' => $welcome_email,
    906                 'first_post' => __( 'Welcome to <a href="SITE_URL">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' ),
    907                 // @todo - network admins should have a method of editing the network siteurl (used for cookie hash)
    908                 'siteurl' => get_option( 'siteurl' ) . '/',
    909                 'add_new_users' => '0',
     894                'site_name'                   => $site_name,
     895                'admin_email'                 => $site_user->user_email,
     896                'admin_user_id'               => $site_user->ID,
     897                'registration'                => 'none',
     898                'upload_filetypes'            => 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf',
     899                'blog_upload_space'           => 100,
     900                'fileupload_maxk'             => 1500,
     901                'site_admins'                 => $site_admins,
     902                'allowedthemes'               => $allowed_themes,
     903                'illegal_names'               => array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', 'files' ),
     904                'wpmu_upgrade_site'           => $wp_db_version,
     905                'welcome_email'               => $welcome_email,
     906                'first_post'                  => __( 'Welcome to <a href="SITE_URL">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' ),
     907                'siteurl'                     => get_option( 'siteurl' ) . '/',
     908                'add_new_users'               => '0',
    910909                'upload_space_check_disabled' => is_multisite() ? get_site_option( 'upload_space_check_disabled' ) : '1',
    911                 'subdomain_install' => intval( $subdomain_install ),
    912                 'global_terms_enabled' => global_terms_enabled() ? '1' : '0',
    913                 'ms_files_rewriting' => is_multisite() ? get_site_option( 'ms_files_rewriting' ) : '0',
    914                 'initial_db_version' => get_option( 'initial_db_version' ),
    915                 'active_sitewide_plugins' => array(),
    916                 'WPLANG' => get_locale(),
     910                'subdomain_install'           => intval( $subdomain_install ),
     911                'global_terms_enabled'        => global_terms_enabled() ? '1' : '0',
     912                'ms_files_rewriting'          => is_multisite() ? get_site_option( 'ms_files_rewriting' ) : '0',
     913                'initial_db_version'          => get_option( 'initial_db_version' ),
     914                'active_sitewide_plugins'     => array(),
     915                'WPLANG'                      => get_locale(),
    917916        );
    918917        if ( ! $subdomain_install )
    919918                $sitemeta['illegal_names'][] = 'blog';
    920919
     920        $sitemeta = apply_filters( 'populate_network_sitemeta', $sitemeta );
     921
    921922        $insert = '';
    922923        foreach ( $sitemeta as $meta_key => $meta_value ) {
    923924                if ( is_array( $meta_value ) )