fix has_replies function when get_replies returns None.

svn path=/plone.app.discussion/trunk/; revision=30256
This commit is contained in:
Timo Stollenwerk 2009-10-07 20:50:01 +00:00
parent f0cbc787ab
commit b09d42e505
1 changed files with 3 additions and 6 deletions

View File

@ -243,12 +243,12 @@ class CommentsViewlet(ViewletBase, layout.FormWrapper):
"""Returns true if there are replies.
"""
try:
self.get_replies(workflow_actions).next()
return True
if self.get_replies(workflow_actions):
self.get_replies(workflow_actions).next()
return True
except StopIteration:
return None
def get_replies(self, workflow_actions=False):
"""Returns all replies to a content object.
@ -293,9 +293,6 @@ class CommentsViewlet(ViewletBase, layout.FormWrapper):
return replies_with_workflow_actions()
else:
return published_replies()
else:
return None
def get_commenter_home_url(self, username):
if username is None: