diff options
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/lib/action_view/helpers/text_helper.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index ab5cdd3b3b..598d24952f 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* pluralize helper interprets nil as zero. #6474 [pope] + * Fix invalid test fixture exposed by stricter Ruby 1.8.5 multipart parsing. #6524 [Bob Silva] * Set ActionView::Base.default_form_builder once rather than passing the :builder option to every form or overriding the form helper methods. [Jeremy Kemper] diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index f1d67c53bb..c5b757d6e1 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -85,7 +85,7 @@ module ActionView # pluralize(2, 'person') => 2 people # pluralize(3, 'person', 'users') => 3 users def pluralize(count, singular, plural = nil) - "#{count} " + if count == 1 || count == '1' + "#{count || 0} " + if count == 1 || count == '1' singular elsif plural plural |