From 2c8391e2e742e2add7edc0d0cf9cb24680db62af Mon Sep 17 00:00:00 2001 From: Eevee Date: Sun, 12 Sep 2010 01:45:58 -0700 Subject: [PATCH] Crash fix: allow creating threads, oops. --- splinext/forum/controllers/forum.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/splinext/forum/controllers/forum.py b/splinext/forum/controllers/forum.py index 3628ff0..5d962e0 100644 --- a/splinext/forum/controllers/forum.py +++ b/splinext/forum/controllers/forum.py @@ -194,10 +194,12 @@ class ForumController(BaseController): subject = c.write_thread_form.subject.data, post_count = 1, ) + source = c.write_thread_form.content.data post = forum_model.Post( position = 1, author_user_id = c.user.id, - content = c.write_thread_form.content.data, + raw_content = source, + content = spline.lib.markdown.translate(source), ) thread.posts.append(post) -- 2.7.4