mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
FEATURE: new 'always_show_trimmed_content' site setting
This commit is contained in:
parent
a5de6f79a3
commit
a69f45d0da
3 changed files with 3 additions and 1 deletions
|
@ -557,7 +557,7 @@ module Email
|
|||
options[:topic].try(:private_message?)
|
||||
|
||||
# only add elided part in messages
|
||||
if options[:elided].present? && is_private_message
|
||||
if options[:elided].present? && (SiteSetting.always_show_trimmed_content || is_private_message)
|
||||
options[:raw] << "\n\n" << "<details class='elided'>" << "\n"
|
||||
options[:raw] << "<summary title='#{I18n.t('emails.incoming.show_trimmed_content')}'>···</summary>" << "\n"
|
||||
options[:raw] << options[:elided] << "\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue