X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/4f9d63e13cd8c6e275797c75b401b074b82937bc..888fa4ed68091f3314f711c5f6fe75858bf5410b:/wp-admin/includes/ms-deprecated.php diff --git a/wp-admin/includes/ms-deprecated.php b/wp-admin/includes/ms-deprecated.php index e7b017be..702e3e13 100644 --- a/wp-admin/includes/ms-deprecated.php +++ b/wp-admin/includes/ms-deprecated.php @@ -65,4 +65,14 @@ function is_wpmu_sitewide_plugin( $file ) { return is_network_only_plugin( $file ); } -?> \ No newline at end of file +function get_site_allowed_themes() { + _deprecated_function( __FUNCTION__, '3.4', 'WP_Theme::get_allowed_on_network()' ); + return array_map( 'intval', WP_Theme::get_allowed_on_network() ); +} + +function wpmu_get_blog_allowedthemes( $blog_id = 0 ) { + _deprecated_function( __FUNCTION__, '3.4', 'WP_Theme::get_allowed_on_site()' ); + return array_map( 'intval', WP_Theme::get_allowed_on_site( $blog_id ) ); +} + +function ms_deprecated_blogs_file() {} \ No newline at end of file