]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/ms-deprecated.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / includes / ms-deprecated.php
index 702e3e13cfc5f5aa57585695f13acdc8383d8194..5038ad376f3f05e330e39f4c6c3f7d14b569534a 100644 (file)
@@ -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,14 +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 ) );
 }
 
+/**
+ * @deprecated
+ */
 function ms_deprecated_blogs_file() {}
\ No newline at end of file