Correct the name of the filter in _nx(). Fixes #10540 props CalebKniffen.

git-svn-id: https://develop.svn.wordpress.org/trunk@11780 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2009-08-06 19:27:52 +00:00
parent 7dcba3d22e
commit dcf3026244
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}
/**