[Source]
# File lib/cms/extensions/active_record/base.rb, line 5 5: def updated_on_string(fmt="%b %e, %Y") 6: if respond_to?(:updated_at) && updated_at 7: updated_at.strftime(fmt).gsub(/\s{2,}/," ") 8: else 9: nil 10: end 11: end
[Validate]