From d7a4c9f7a08a02242a5a1d3cd58f6844d4dd1559 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 12 May 2009 06:10:08 +0000 Subject: [PATCH] Remove unneeded pipe in admin footer. Props DD32, Denis-de-Bernardy. fixes #8676 git-svn-id: https://develop.svn.wordpress.org/trunk@11298 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php index bc75980cdf..bf7e7c5e13 100644 --- a/wp-admin/includes/update.php +++ b/wp-admin/includes/update.php @@ -83,7 +83,7 @@ function find_core_update( $version, $locale ) { function core_update_footer( $msg = '' ) { if ( !current_user_can('manage_options') ) - return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] ); + return sprintf( __( 'Version %s' ), $GLOBALS['wp_version'] ); $cur = get_preferred_from_update_core(); if ( ! isset( $cur->current ) )