Switch to unified view

a/Allura/allura/controllers/discuss.py b/Allura/allura/controllers/discuss.py
...
...
297
                    author=self.post.author,
297
                    author=self.post.author,
298
                    url=self.post.url,
298
                    url=self.post.url,
299
                    thread=self.post.thread,
299
                    thread=self.post.thread,
300
                    reply_subject=self.post.reply_subject,
300
                    reply_subject=self.post.reply_subject,
301
                    attachments=self.post.attachments,
301
                    attachments=self.post.attachments,
302
                    related_artifacts=self.post.related_artifacts
302
                    related_artifacts=self.post.related_artifacts,
303
                    parent_security_context=lambda: None,
303
                    )
304
                    )
304
            else:
305
            else:
305
                post=self.post
306
                post=self.post
306
            return dict(discussion=self.post.discussion,
307
            return dict(discussion=self.post.discussion,
307
                        post=post)
308
                        post=post)