X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/699231ae09f7057a4d0000cdf32e50a3df6a04ca..7f1521bf193b382565eb753043c161f4cb3fcda7:/wp-admin/includes/ms-deprecated.php?ds=sidebyside diff --git a/wp-admin/includes/ms-deprecated.php b/wp-admin/includes/ms-deprecated.php index e7b017be..6a443dee 100644 --- a/wp-admin/includes/ms-deprecated.php +++ b/wp-admin/includes/ms-deprecated.php @@ -14,7 +14,7 @@ */ function wpmu_menu() { _deprecated_function(__FUNCTION__, '3.0' ); - // deprecated. See #11763 + // Deprecated. See #11763. } /** @@ -53,7 +53,6 @@ function activate_sitewide_plugin() { */ function deactivate_sitewide_plugin( $plugin = false ) { _deprecated_function(__FUNCTION__, '3.0', 'deactivate_plugin()' ); - return; } /** @@ -65,4 +64,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