use HTTPS for favicon.ico if page is HTTPS

This commit is contained in:
Evan Prodromou 2010-10-14 00:50:26 -04:00
parent d91f894ccb
commit ca0323d01b
1 changed files with 2 additions and 1 deletions

View File

@ -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')) {