summaryrefslogtreecommitdiffstats
path: root/app/helpers/custom_fields_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/custom_fields_helper.rb')
-rw-r--r--app/helpers/custom_fields_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb
index b1b176107..25389ca63 100644
--- a/app/helpers/custom_fields_helper.rb
+++ b/app/helpers/custom_fields_helper.rb
@@ -62,7 +62,7 @@ module CustomFieldsHelper
return "" unless value && !value.empty?
case field_format
when "date"
- begin; l_date(value.to_date); rescue; value end
+ begin; format_date(value.to_date); rescue; value end
when "bool"
l_YesNo(value == "1")
else