Skip to content

Commit

Permalink
Make activity date formats consistent
Browse files Browse the repository at this point in the history
with date formats elsewhere on the site. Everyone should be using the
render_datetime() helper and if they really want a different date
format, still user render_datetime() but pass their own date_format arg.
  • Loading branch information
Sean Hammond committed Feb 7, 2012
1 parent 0c60e95 commit 495d944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/_util.html
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@
</py:otherwise>
</py:choose>
<span class="date">
${h.render_datetime(activity.timestamp, '%B %d %Y')}
${h.render_datetime(activity.timestamp)}
</span>
</div>

Expand Down

0 comments on commit 495d944

Please sign in to comment.