diff options
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index b05770b15..fcac0e0a7 100644 --- a/lib/action.php +++ b/lib/action.php @@ -175,8 +175,9 @@ class Action extends HTMLOutputter // lawsuit $this->element('link', array('rel' => 'shortcut icon', 'href' => Theme::path('favicon.ico'))); } else { + // favicon.ico should be HTTPS if the rest of the page is $this->element('link', array('rel' => 'shortcut icon', - 'href' => common_path('favicon.ico'))); + 'href' => common_path('favicon.ico', StatusNet::isHTTPS()))); } if (common_config('site', 'mobile')) { |