From e435fc983f3b3c98a0610516e0dd043f3242958c Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 20 Mar 2008 19:40:11 +0000 Subject: [PATCH] Send plugins all the replacment strings. git-svn-id: http://svn.automattic.com/wordpress/trunk@7420 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 887b6763c..8ffe51c0f 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 ); ?>