From 931c1f413d9fdcd218f9994c8da48b5e6d0542eb Mon Sep 17 00:00:00 2001 From: donncha Date: Wed, 10 Aug 2005 20:23:06 +0000 Subject: moved function from plugin to core. git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@157 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-inst/wp-includes/pluggable-functions.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'wp-inst/wp-includes/pluggable-functions.php') diff --git a/wp-inst/wp-includes/pluggable-functions.php b/wp-inst/wp-includes/pluggable-functions.php index c6cb5cc..1a85624 100644 --- a/wp-inst/wp-includes/pluggable-functions.php +++ b/wp-inst/wp-includes/pluggable-functions.php @@ -313,4 +313,19 @@ function wp_notify_moderator($comment_id) { } endif; +if ( !function_exists('x_headers') ) : +function x_headers() { + global $current_site, $current_blog, $WPMU_date; + + print "\n"; + print "\n"; + print "\n"; + if( empty( $WPMU_date ) == false ) + print "\n"; + + +} +add_action('wp_head', "x_headers" ); +endif; + ?> -- cgit