From 7e657d79fd1695407965b33cb35da2eb6998305b Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 23 Aug 2012 17:15:13 +0530 Subject: [PATCH] global date format for blog comments --- erpnext/website/blog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/website/blog.py b/erpnext/website/blog.py index ea1992b1fe..482800ec4e 100644 --- a/erpnext/website/blog.py +++ b/erpnext/website/blog.py @@ -98,7 +98,7 @@ def add_comment(args=None): import webnotes.utils - comment['comment_date'] = webnotes.utils.pretty_date(comment['creation']) + comment['comment_date'] = webnotes.utils.global_date_format(comment['creation']) template_args = { 'comment_list': [comment], 'template': 'html/comment.html' } # get html of comment row