Make WordPress Core

Changeset 21827


Ignore:
Timestamp:
09/12/2012 03:48:40 PM (12 years ago)
Author:
nacin
Message:

Disable multisite quotas by default on new installs. props mpvanwinkle77. fixes #21513.

File:
1 edited

Legend:

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

    r21823 r21827  
    910910        'siteurl' => get_option( 'siteurl' ) . '/',
    911911        'add_new_users' => '0',
    912         'upload_space_check_disabled' => '0',
     912        'upload_space_check_disabled' => is_multisite() ? get_site_option( 'upload_space_check_disabled' ) : '1',
    913913        'subdomain_install' => intval( $subdomain_install ),
    914914        'global_terms_enabled' => global_terms_enabled() ? '1' : '0',
Note: See TracChangeset for help on using the changeset viewer.