fix "Reply button is not working anymore when a reply was posted."

Switch HTML anchor from "#comment-<comment_id>" to "#<comment_id>".

svn path=/plone.app.discussion/trunk/; revision=27570
This commit is contained in:
Timo Stollenwerk 2009-06-21 10:34:12 +00:00
parent c35b631e36
commit b288f3f7fb
1 changed files with 4 additions and 1 deletions

View File

@ -274,7 +274,10 @@ class ReplyToComment(BrowserView):
new_re_id = replies.addComment(comment)
# Redirect to comment (inside a content object page)
self.request.response.redirect(aq_parent(aq_inner(self.context)).absolute_url() + '#comment-' + str(reply_to_comment_id))
#self.request.response.redirect(aq_parent(aq_inner(self.context)).absolute_url() + '#comment-' + str(reply_to_comment_id))
# Todo: Temporarily remove the "#comment-" to fix a bug
# in CMFPlone/skins/plone_ecmascript/form_tabbing.js
self.request.response.redirect(aq_parent(aq_inner(self.context)).absolute_url() + '#' + str(reply_to_comment_id))
class DeleteComment(BrowserView):
"""Delete a comment from a conversation