mirror of
https://github.com/discourse/discourse.git
synced 2025-06-03 14:15:11 +08:00
FIX: Text logo does not show up on non ember pages.
This commit is contained in:
@ -281,7 +281,13 @@ module ApplicationHelper
|
||||
end
|
||||
|
||||
def application_logo_url
|
||||
@application_logo_url ||= (mobile_view? && SiteSetting.site_mobile_logo_url).presence || SiteSetting.site_logo_url
|
||||
@application_logo_url ||= begin
|
||||
if mobile_view? && SiteSetting.site_mobile_logo_url
|
||||
SiteSetting.site_mobile_logo_url
|
||||
else
|
||||
SiteSetting.site_home_logo_url
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def login_path
|
||||
|
Reference in New Issue
Block a user