summaryrefslogtreecommitdiffstats
path: root/app/helpers/custom_fields_helper.rb
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-04-16 15:33:55 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-04-16 15:33:55 +0000
commitd22723ed04297175a22b75fec806fa6a1734f299 (patch)
tree49e026955ddb7660577f3fcecbbcbe67917b4e6f /app/helpers/custom_fields_helper.rb
parent88db9d0bdc9b3b91766582e40c4b44627f594f07 (diff)
downloadredmine-d22723ed04297175a22b75fec806fa6a1734f299.tar.gz
redmine-d22723ed04297175a22b75fec806fa6a1734f299.zip
Refactor: Move method
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3673 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/custom_fields_helper.rb')
-rw-r--r--app/helpers/custom_fields_helper.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb
index f3fcc1fc5..f75c89382 100644
--- a/app/helpers/custom_fields_helper.rb
+++ b/app/helpers/custom_fields_helper.rb
@@ -95,15 +95,7 @@ module CustomFieldsHelper
# Return a string used to display a custom value
def format_value(value, field_format)
- return "" unless value && !value.empty?
- case field_format
- when "date"
- begin; format_date(value.to_date); rescue; value end
- when "bool"
- l(value == "1" ? :general_text_Yes : :general_text_No)
- else
- value
- end
+ Redmine::CustomFieldFormat.format_value(value, field_format) # Proxy
end
# Return an array of custom field formats which can be used in select_tag