comparison src/browser/sat_browser/blog.py @ 758:f725cc49e996

browser_side (blog): tags were not passed when sending / editing a message
author souliane <souliane@mailoo.org>
date Tue, 24 Nov 2015 22:49:25 +0100
parents 9b57d117e8c5
children e69f411c16a5
comparison
equal deleted inserted replaced
757:8aa2a199d6e3 758:f725cc49e996
255 # TODO: if the user change his parameters after the message edition started, 255 # TODO: if the user change his parameters after the message edition started,
256 # the message syntax could be different then the current syntax: pass the 256 # the message syntax could be different then the current syntax: pass the
257 # message syntax in mb_data for the frontend to use it instead of current syntax. 257 # message syntax in mb_data for the frontend to use it instead of current syntax.
258 self.item.content_rich = content['text'] 258 self.item.content_rich = content['text']
259 self.item.title = content['title'] 259 self.item.title = content['title']
260 self.item.tags = quick_blog.mbdata2tags(content)
260 else: 261 else:
261 self.item.content = content['text'] 262 self.item.content = content['text']
262 263
263 self.send() 264 self.send()
264 265