fix in recent blog list link

This commit is contained in:
Anand Doshi
2012-07-31 19:15:01 +05:30
parent fd684ec247
commit c7d5fc4952
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ def get_recent_blog_list(args=None):
if not args: args = webnotes.form_dict
query = """\
select name, title, left(content, 100) as content
select name, page_name, title, left(content, 100) as content
from tabBlog
where ifnull(published,0)=1 and
name!=%(name)s order by creation desc"""