diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-17 08:02:09 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-17 08:02:09 +0000 |
commit | 3e2854611b5d73687a701b24dc58fd56d79be09d (patch) | |
tree | 4fad2b7ffa9e126613519a5e6d08a491d4723284 /config.inc.php.example | |
parent | 39cf52851529c0d91d69307186c6bf5e9f362735 (diff) | |
download | semanticscuttle-3e2854611b5d73687a701b24dc58fd56d79be09d.tar.gz semanticscuttle-3e2854611b5d73687a701b24dc58fd56d79be09d.tar.bz2 |
New feature: menu box which displays tags included into the special tag menu [Config modified]
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@105 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'config.inc.php.example')
-rw-r--r-- | config.inc.php.example | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config.inc.php.example b/config.inc.php.example index dad6155..76bd93f 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -43,7 +43,7 @@ $top_include = 'top.inc.php'; # bottom_include: The footer file. $bottom_include = 'bottom.inc.php'; # sidebar block index : array ordering blocks search, users, linked, recent -$index_sidebar_blocks = array('search','users','linked','recent'); +$index_sidebar_blocks = array('search', 'menu', 'recent', 'users'); # shortdate: The format of short dates. # longdate: The format of long dates. @@ -137,6 +137,11 @@ $enableCommonBookmarkDescription = true; $enableWebsiteThumbnails = true; $sizeSearchHistory = 10; +# name of the tag whose subtags will appear into the menu box +$menuTag = 'menu'; +# maximum number of items (tags) appearing into menu box +$maxSizeMenuBlock = 7; + include_once('debug.inc.php'); ?> |