diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-26 18:55:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-26 18:55:02 +0000 |
commit | 7c27fb7c1d9866f68b9e444cd3af68256cdc637a (patch) | |
tree | d18d03fff49ca1177eb65c003fa7692ea98e5a25 /app | |
parent | e51c20c4960937f1d1cdc92ae316f2652f07b39a (diff) | |
download | redmine-7c27fb7c1d9866f68b9e444cd3af68256cdc637a.tar.gz redmine-7c27fb7c1d9866f68b9e444cd3af68256cdc637a.zip |
fixed: crash when changing the status of an issue
git-svn-id: http://redmine.rubyforge.org/svn/trunk@183 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/issues_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index cacc7f532..57fb01600 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -61,7 +61,7 @@ module IssuesHelper value = content_tag("i", h(value)) if value
end
- if detail.value and !detail.value.empty?
+ if detail.value and !detail.value.to_s.empty?
if old_value
label + " " + l(:text_journal_changed, old_value, value)
else
|