summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-includes/pluggable-functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst/wp-includes/pluggable-functions.php')
-rw-r--r--wp-inst/wp-includes/pluggable-functions.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/wp-inst/wp-includes/pluggable-functions.php b/wp-inst/wp-includes/pluggable-functions.php
index 941ab75..c6cb5cc 100644
--- a/wp-inst/wp-includes/pluggable-functions.php
+++ b/wp-inst/wp-includes/pluggable-functions.php
@@ -313,20 +313,4 @@ function wp_notify_moderator($comment_id) {
}
endif;
-if ( !function_exists('x_headers') ) :
-function x_headers() {
- global $current_site, $current_blog, $WPMU_date;
-
- header( "X-totalblogs: " . get_blog_count() );
- header( "X-rootblog: http://" . $current_site->domain . $current_site->path );
- header( "X-created-on: " . $current_blog->registered );
-
- if( empty( $WPMU_date ) == false )
- header( "X-wpmu-date: $WPMU_date" );
-
-
-}
-add_action('wp_head', "x_headers" );
-endif;
-
?>