Make WordPress Core

Changeset 25092


Ignore:
Timestamp:
08/22/2013 08:54:09 PM (11 years ago)
Author:
nacin
Message:

Multisite: Add a filter to get_space_allowed() and increase its internal default value to the network default.

props jkudish for initial patch.
fixes #23650.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-functions.php

    r25085 r25092  
    19081908
    19091909    if ( empty( $space_allowed ) || ! is_numeric( $space_allowed ) )
    1910         $space_allowed = 50;
    1911 
    1912     return $space_allowed;
     1910        $space_allowed = 100;
     1911
     1912    return apply_filters( 'get_space_allowed', $space_allowed );
    19131913}
    19141914
Note: See TracChangeset for help on using the changeset viewer.