mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 10:58:31 -05:00
FIX: do not allow SVG image as digest logo
This commit is contained in:
parent
996dc3135b
commit
f9d1a2554d
2 changed files with 3 additions and 3 deletions
|
@ -19,9 +19,9 @@ module UserNotificationsHelper
|
||||||
|
|
||||||
def logo_url
|
def logo_url
|
||||||
logo_url = SiteSetting.digest_logo_url
|
logo_url = SiteSetting.digest_logo_url
|
||||||
logo_url = SiteSetting.logo_url if logo_url.blank?
|
logo_url = SiteSetting.logo_url if logo_url.blank? || logo_url =~ /\.svg$/i
|
||||||
|
|
||||||
return nil if logo_url.blank?
|
return nil if logo_url.blank? || logo_url =~ /\.svg$/i
|
||||||
if logo_url !~ /http(s)?\:\/\//
|
if logo_url !~ /http(s)?\:\/\//
|
||||||
logo_url = "#{Discourse.base_url}#{logo_url}"
|
logo_url = "#{Discourse.base_url}#{logo_url}"
|
||||||
end
|
end
|
||||||
|
|
|
@ -837,7 +837,7 @@ en:
|
||||||
onebox_domains_whitelist: "A list of domains to allow oneboxing for; these domains should support OpenGraph or oEmbed. Test them at http://iframely.com/debug"
|
onebox_domains_whitelist: "A list of domains to allow oneboxing for; these domains should support OpenGraph or oEmbed. Test them at http://iframely.com/debug"
|
||||||
|
|
||||||
logo_url: "The logo image at the top left of your site, should be a wide rectangle shape. If left blank site title text will be shown."
|
logo_url: "The logo image at the top left of your site, should be a wide rectangle shape. If left blank site title text will be shown."
|
||||||
digest_logo_url: "The alternate logo image used at the top of your site's email digest. Should be a wide rectangle shape. If left blank `logo_url` will be used."
|
digest_logo_url: "The alternate logo image used at the top of your site's email digest. Should be a wide rectangle shape. Should not be an SVG image. If left blank `logo_url` will be used."
|
||||||
logo_small_url: "The small logo image at the top left of your site, should be a square shape, seen when scrolling down. If left blank a home glyph will be shown."
|
logo_small_url: "The small logo image at the top left of your site, should be a square shape, seen when scrolling down. If left blank a home glyph will be shown."
|
||||||
favicon_url: "A favicon for your site, see http://en.wikipedia.org/wiki/Favicon, to work correctly over a CDN it must be a png"
|
favicon_url: "A favicon for your site, see http://en.wikipedia.org/wiki/Favicon, to work correctly over a CDN it must be a png"
|
||||||
mobile_logo_url: "The fixed position logo image used at the top left of your mobile site. Should be a square shape. If left blank, `logo_url` will be used. eg: http://example.com/uploads/default/logo.png"
|
mobile_logo_url: "The fixed position logo image used at the top left of your mobile site. Should be a square shape. If left blank, `logo_url` will be used. eg: http://example.com/uploads/default/logo.png"
|
||||||
|
|
Loading…
Reference in a new issue