From 91e47a25d83abea4d254b9649a9d95b61ec1c194 Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 6 Aug 2009 19:27:52 +0000 Subject: [PATCH] Correct the name of the filter in _nx(). Fixes #10540 props CalebKniffen. git-svn-id: http://svn.automattic.com/wordpress/trunk@11780 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index 048504972..bc256867d 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -253,7 +253,7 @@ function _nc( $single, $plural, $number, $domain = 'default' ) { function _nx($single, $plural, $number, $context, $domain = 'default') { $translations = &get_translations_for_domain( $domain ); $translation = $translations->translate_plural( $single, $plural, $number, $context ); - return apply_filters( 'ngettext_with_context ', $translation, $single, $plural, $number, $context, $domain ); + return apply_filters( 'ngettext_with_context', $translation, $single, $plural, $number, $context, $domain ); } /**