diff options
author | Evan Prodromou <evan@status.net> | 2010-10-14 14:56:38 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-10-14 14:56:38 -0400 |
commit | 1a4dc03bfe9c02de04635411e1af78821adc4d5e (patch) | |
tree | 5913510cb75249093e9ed8e237a5b3e3c3ed31d9 | |
parent | 8f3b18f27f1c8daee3f06f457eaf3587db22c96e (diff) |
document and default for site|ssllogo
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | lib/default.php | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -852,6 +852,8 @@ notice: A plain string that will appear on every page. A good place be escaped. logo: URL of an image file to use as the logo for the site. Overrides the logo in the theme, if any. +ssllogo: URL of an image file to use as the logo on SSL pages. If unset, + theme logo is used instead. ssl: Whether to use SSL and https:// URLs for some or all pages. Possible values are 'always' (use it for all pages), 'never' (don't use it for any pages), or 'sometimes' (use it for diff --git a/lib/default.php b/lib/default.php index 08ad811b6..fb032930b 100644 --- a/lib/default.php +++ b/lib/default.php @@ -37,6 +37,7 @@ $default = 'path' => $_path, 'logfile' => null, 'logo' => null, + 'ssllogo' => null, 'logdebug' => false, 'fancy' => false, 'locale_path' => INSTALLDIR.'/locale', |