Make WordPress Core

Ticket #15593: 15593.wpmu_update_blog_options.patch

File 15593.wpmu_update_blog_options.patch, 1.3 KB (added by ocean90, 14 years ago)
  • wp-admin/network/site-options.php

     
    4444                        update_option( $key, stripslashes( $val ), false ); // no need to refresh blog details yet
    4545                $c++;
    4646        }
    47 
     47        do_action( 'wpmu_update_blog_options' );
    4848        restore_current_blog();
    4949        wp_redirect( add_query_arg( array( 'update' => 'updated', 'id' => $id ), 'site-options.php') );
    5050}
  • wp-admin/network/site-users.php

     
    129129                        }
    130130                        break;
    131131        }
    132        
     132
     133        do_action( 'wpmu_update_blog_options' );
    133134        restore_current_blog();
    134135        wp_redirect( add_query_arg( 'update', $update, wp_get_referer() ) );
    135136        exit();
  • wp-admin/network/site-themes.php

     
    7676                                unset( $allowed_themes[ $theme ] );
    7777                        break;
    7878        }
    79        
     79
     80        do_action( 'wpmu_update_blog_options' );
    8081        update_option( 'allowedthemes', $allowed_themes );
    8182        restore_current_blog();
    8283