diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-03-15 15:52:37 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-03-15 15:52:37 +0000 |
commit | d3642f6b0ed1ee5a7654fe7eff375ca1212c267d (patch) | |
tree | 08efea0013ae4755699594f3b740bcb2a76b7abe /config.inc.php.example | |
parent | 0ea18f81edff9866d8b3d5a0c2394135e4af9560 (diff) | |
download | semanticscuttle-d3642f6b0ed1ee5a7654fe7eff375ca1212c267d.tar.gz semanticscuttle-d3642f6b0ed1ee5a7654fe7eff375ca1212c267d.tar.bz2 |
Interface Fix: add possible messages in configuration file for footer or sidebar
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@309 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'config.inc.php.example')
-rw-r--r-- | config.inc.php.example | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.inc.php.example b/config.inc.php.example index 20711ac..0b9d658 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -9,6 +9,9 @@ #### System #### $sitename = 'SemanticScuttle'; #The name of this site. $welcomeMessage = 'Welcome to SemanticScuttle! Social bookmarking for small communities.'; # The welcome message of this site +$footerMessage = ''; #HTML message appearing at the bottom of the page (just above SemanticScuttle credits) +$sidebarTopMessage = ''; #HTML message appearing at the top of the sidebar +$sidebarBottomMessage = ''; #HTML message appearing at the bottom of the sidebar $root = NULL; # Set to NULL to autodetect the root url of the website. If your installation is into a subdirectory like "http://www.example.com/semanticscuttle/" then replace NULL by your address (between "" and with final '/'); $locale = 'en_GB'; #locale used in /locales/ {de_DE en_GB fr_FR ...} $usecache = false; # use cache ? {true,false} |