From 930b21a7700dfd47d3f2ed54025ee14b79bcfa0b Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Thu, 11 Feb 2010 20:10:15 +0000 Subject: [PATCH] fix dashboard right now category links, fixes #12205 git-svn-id: https://develop.svn.wordpress.org/trunk@13057 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/dashboard.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 63316f86cc..2b43f73da6 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -274,8 +274,8 @@ function wp_dashboard_right_now() { $num = number_format_i18n( $num_cats ); $text = _n( 'Category', 'Categories', $num_cats ); if ( current_user_can( 'manage_categories' ) ) { - $num = "$num"; - $text = "$text"; + $num = "$num"; + $text = "$text"; } echo '' . $num . ''; echo '' . $text . '';