From 1a4dc03bfe9c02de04635411e1af78821adc4d5e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Oct 2010 14:56:38 -0400 Subject: [PATCH] document and default for site|ssllogo --- README | 2 ++ lib/default.php | 1 + 2 files changed, 3 insertions(+) diff --git a/README b/README index 70491c4c35..6b351f143d 100644 --- a/README +++ b/README @@ -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 08ad811b61..fb032930b2 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',