diff options
| author | ericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-09 08:20:57 +0000 | 
|---|---|---|
| committer | ericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-09 08:20:57 +0000 | 
| commit | e0b7195278beb9c67267fc1311808d4c6b97d3d1 (patch) | |
| tree | ef127561c13c55eabc6fc862f5e73e21caf7071f | |
| parent | 84f469ed5f8d13b751c9b9fa3f9302bd05d58632 (diff) | |
| download | semanticscuttle-e0b7195278beb9c67267fc1311808d4c6b97d3d1.tar.gz semanticscuttle-e0b7195278beb9c67267fc1311808d4c6b97d3d1.tar.bz2 | |
add index_sidebar_blocks declaration
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@98 b3834d28-1941-0410-a4f8-b48e95affb8f
| -rw-r--r-- | config.inc.php.example | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/config.inc.php.example b/config.inc.php.example index 0627f9d..23a2ad8 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -33,8 +33,15 @@ $sitename           = 'SemanticScuttle';  $welcomeMessage     = 'More than tags...';  # locale:           The locale used (list ./locales : de_DE  en_GB  fr_FR  it_IT  lt_LT nl_NL  zh_CN dk_DK  es_ES  hi_IN  ja_JP  pt_BR)  $locale             = 'en_GB'; + +### display templates ###  # top_include:      The header file. +$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'); +  # shortdate:        The format of short dates.  # longdate:         The format of long dates.  # nofollow:             true    - Include rel="nofollow" attribute on @@ -89,8 +96,6 @@ $locale             = 'en_GB';  #			10 [Default]  #			-1 Unlimited -$top_include        = 'top.inc.php'; -$bottom_include     = 'bottom.inc.php';  $shortdate          = 'd-m-Y';  $longdate           = 'j F Y';  $nofollow           = true; | 
