Make WordPress Core

Ticket #15593: 15593.2.diff

File 15593.2.diff, 1005 bytes (added by PeteMall, 14 years ago)

Restore wpmueditblogaction hook in site-options.

  • wp-admin/network/site-options.php

     
    4545                $c++;
    4646        }
    4747
     48        do_action( 'wpmu_update_blog_options' );
    4849        restore_current_blog();
    4950        wp_redirect( add_query_arg( array( 'update' => 'updated', 'id' => $id ), 'site-options.php') );
    5051}
     
    122123                        <?php
    123124                        }
    124125                } // End foreach
     126                do_action( 'wpmueditblogaction', $id );
    125127                ?>
    126128        </table>
    127129        <?php submit_button(); ?>
  • wp-admin/network/site-info.php

     
    5656        }
    5757        update_blog_details( $id, $blog_data );
    5858
    59         do_action( 'wpmu_update_blog_options' );
    6059        restore_current_blog();
    6160        wp_redirect( add_query_arg( array( 'update' => 'updated', 'id' => $id ), 'site-info.php') );
    6261}