Make WordPress Core

Ticket #19538: 19538.hotfix.diff

File 19538.hotfix.diff, 870 bytes (added by nacin, 13 years ago)
  • hotfix.php

     
    3636        switch ( $wp_version ) {
    3737                case '3.3' :
    3838                        $hotfixes = array( '330_no_wp_print_styles_in_admin', '330_no_json_encode_load_scripts' );
     39                        if ( is_multisite() )
     40                                $hotfixes[] = 'wp_hotfix_330_blog_upload_space';
    3941                        break;
    4042                case '3.1.3' :
    4143                        $hotfixes = array( '313_post_status_query_string' );
     
    132134        if ( ! defined( 'CONCATENATE_SCRIPTS' ) )
    133135                define( 'CONCATENATE_SCRIPTS', false );
    134136}
     137
     138function wp_hotfix_330_blog_upload_space() {
     139        add_filter( 'option_blog_upload_space', 'wp_hotfix_330_blog_upload_space_filter' );
     140}
     141
     142function wp_hotfix_330_blog_upload_space_filter( $value ) {
     143        if ( '' === $value )
     144                return false;
     145        return $value;
     146}
     147 No newline at end of file