X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/8f374b7233bc2815ccc387e448d208c5434eb961..53f4633144ed68c8b8fb5861f992b5489894a940:/wp-admin/includes/ms-deprecated.php diff --git a/wp-admin/includes/ms-deprecated.php b/wp-admin/includes/ms-deprecated.php index 7119018b..5038ad37 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,12 +64,25 @@ function is_wpmu_sitewide_plugin( $file ) { return is_network_only_plugin( $file ); } +/** + * @deprecated 3.4.0 + * @see WP_Theme::get_allowed_on_network() + */ 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() ); } +/** + * @deprecated 3.4.0 + * @see WP_Theme::get_allowed_on_site() + */ 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 ) ); -} \ No newline at end of file +} + +/** + * @deprecated + */ +function ms_deprecated_blogs_file() {} \ No newline at end of file