Switch to unified view

a/Allura/allura/model/discuss.py b/Allura/allura/model/discuss.py
...
...
205
        p = self.post(**kw)
205
        p = self.post(**kw)
206
        p.commit()
206
        p.commit()
207
        self.num_replies += 1
207
        self.num_replies += 1
208
        if not self.first_post:
208
        if not self.first_post:
209
            self.first_post_id = p._id
209
            self.first_post_id = p._id
210
        link = None
211
        if self.app.tool_label == 'Tickets':
212
            link = self.artifact.url() + p.url_paginated()[len(self.url()):]
213
210
        Feed.post(self, title=p.subject, description=p.text)
214
        Feed.post(self, title=p.subject, description=p.text, link=link)
211
        return p
215
        return p
212
216
213
    def post(self, text, message_id=None, parent_id=None,
217
    def post(self, text, message_id=None, parent_id=None,
214
             timestamp=None, ignore_security=False, **kw):
218
             timestamp=None, ignore_security=False, **kw):
215
        if not ignore_security:
219
        if not ignore_security: