File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
cms/server/admin/templates Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ <h2 id="title_announcements" class="toggling_on">Announcements</h2>
4444 </ div >
4545 < div class ="notification_timestamp "> {{ msg.timestamp }}</ div >
4646 < div class ="notification_subject "> {{ msg.subject }}</ div >
47- < div class ="notification_text preserve_line_breaks "> {{ msg.text }}</ div >
47+ < div class ="notification_text "> {{ msg.text | markdown }}</ div >
4848 < hr >
4949 < div class ="notification_admin_owner ">
5050 By: {{ msg.admin.name if msg.admin is not none else "< unknown > " }}
Original file line number Diff line number Diff line change 2323 {% if msg.reply_timestamp is not none %}
2424 < hr >
2525 < div class ="notification_subject "> Reply: {{ msg.reply_subject }}</ div >
26- < div class ="notification_text preserve_line_breaks "> {{ msg.reply_text }}</ div >
26+ < div class ="notification_text "> {{ msg.reply_text | markdown }}</ div >
2727 < hr >
2828 < div class ="notification_admin_owner ">
2929 Reply from: {{ msg.admin.name if msg.admin is not none else "< unknown > " }}</ div >
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ <h2 id="title_messages" class="toggling_on">Messages</h2>
164164 < div class ="notification_msg ">
165165 < div class ="notification_timestamp "> {{ msg.timestamp }}</ div >
166166 < div class ="notification_subject "> {{ msg.subject }}</ div >
167- < div class ="notification_text preserve_line_breaks "> {{ msg.text }}</ div >
167+ < div class ="notification_text "> {{ msg.text | markdown }}</ div >
168168 < hr >
169169 < div class ="notification_admin_owner ">
170170 By: {{ msg.admin.name if msg.admin is not none else "< unknown > " }}
You can’t perform that action at this time.
0 commit comments