]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Document the site-logo configuration option
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 11 Mar 2009 20:21:10 +0000 (16:21 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 11 Mar 2009 20:21:10 +0000 (16:21 -0400)
The configuration option for site logo wasn't well documented, so I
added it to the README file, config.php.sample, and common.php.

README
config.php.sample
lib/common.php

diff --git a/README b/README
index 07957c09e9ead32658df560065860cfacd3813d2..1c2cbe681f13ebdbc4987392764c23dc9b8fb95b 100644 (file)
--- a/README
+++ b/README
@@ -884,6 +884,8 @@ notice: A plain string that will appear on every page. A good place
         be escaped.
 dupelimit: Time in which it's not OK for the same person to post the
            same notice; default = 60 seconds.
+logo: URL of an image file to use as the logo for the site. Overrides
+      the logo in the theme, if any.
 
 db
 --
index e9052bbf9ef1667e4221e1e5f16065847ecf6765..529e86f15f5bdc9ce83c3f084dea66263dab0b8b 100644 (file)
@@ -37,6 +37,9 @@ $config['site']['path'] = 'laconica';
 # Enables extra log information, for example full details of PEAR DB errors
 #$config['site']['logdebug'] = true;
 
+#To set your own logo, overriding the one in the theme
+#$config['site']['logo'] = '/mylogo.png';
+
 # This is a PEAR DB DSN, see http://pear.php.net/manual/en/package.database.db.intro-dsn.php
 # Set it to match your actual database
 
index c3d697aeeda8bc4659fcf272957489d05e7cdb02..7739d947521dbc22b7eae854e2b9a3cbbbfa96d2 100644 (file)
@@ -73,6 +73,7 @@ $config =
               'theme' => 'default',
               'path' => $_path,
               'logfile' => null,
+              'logo' => null,
               'logdebug' => false,
               'fancy' => false,
               'locale_path' => INSTALLDIR.'/locale',