##// END OF EJS Templates
Fixed threads with tags creating.
neko259 -
r184:efe23e07 default
parent child Browse files
Show More
@@ -47,6 +47,8 b' class PostManager(models.Manager):'
47
47
48 if tags:
48 if tags:
49 map(post.tags.add, tags)
49 map(post.tags.add, tags)
50 for tag in tags:
51 tag.threads.add(post)
50
52
51 if thread:
53 if thread:
52 thread.replies.add(post)
54 thread.replies.add(post)
General Comments 0
You need to be logged in to leave comments. Login now