From cdec5906e2f94405fbe47dc3fd9915c3963e7538 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Thu, 20 Mar 2008 19:40:11 +0000 Subject: [PATCH] Send plugins all the replacment strings. git-svn-id: https://develop.svn.wordpress.org/trunk@7420 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index 887b6763cc..8ffe51c0f5 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -91,7 +91,7 @@ $post_type_text = implode(', ', $post_type_texts); // There is always a category $sentence = sprintf( __( 'You have %1$s, contained within %2$s and %3$s. %4$s' ), $post_type_text, $cats_text, $tags_text, $pending_text ); -$sentence = apply_filters( 'dashboard_count_sentence', $sentence, $post_type_text, $cats_text, $tags_text ); +$sentence = apply_filters( 'dashboard_count_sentence', $sentence, $post_type_text, $cats_text, $tags_text, $pending_text ); ?>