From e52e46a609488cc6bdf4897bd6430722348597fa Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 5 Jun 2013 11:32:53 +1000 Subject: [PATCH] fix blank created_at .. date is unbound, we should rename it to unboundDate --- .../discourse/templates/user/activity.js.handlebars | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/templates/user/activity.js.handlebars b/app/assets/javascripts/discourse/templates/user/activity.js.handlebars index 310790838a..4eb42acced 100644 --- a/app/assets/javascripts/discourse/templates/user/activity.js.handlebars +++ b/app/assets/javascripts/discourse/templates/user/activity.js.handlebars @@ -25,7 +25,9 @@ {{#if hasWebsite}}
{{i18n user.website}}:
{{websiteName}}
{{/if}} -
{{i18n user.created}}:
{{date created_at}}
+ {{#if created_at}} +
{{i18n user.created}}:
{{date created_at}}
+ {{/if}} {{#if last_posted_at}}
{{i18n user.last_posted}}:
{{date last_posted_at}}
{{/if}}