diff options
author | ericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-13 05:51:32 +0000 |
---|---|---|
committer | ericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-13 05:51:32 +0000 |
commit | 01ddabc89381433d841490298a9c1938a66f43a5 (patch) | |
tree | 4446787ee129349a3719e039a303158123d69e53 /config.inc.php.example | |
parent | 81242de2e9f69d2e1b5ce7c9a2a684612b0ce9d8 (diff) | |
download | semanticscuttle-01ddabc89381433d841490298a9c1938a66f43a5.tar.gz semanticscuttle-01ddabc89381433d841490298a9c1938a66f43a5.tar.bz2 |
minor debug (duplicate variable)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@124 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'config.inc.php.example')
-rw-r--r-- | config.inc.php.example | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/config.inc.php.example b/config.inc.php.example index 21ded80..24d155e 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -11,7 +11,6 @@ $sitename = 'SemanticScuttle'; #The name of this site. $welcomeMessage = 'More than tags...'; # The welcome message of this site $root = NULL; # Set to NULL to autodetect the root url of the website $locale = 'en_GB'; #locale used in /locales/ {de_DE en_GB fr_FR ...} -$tableprefix = 'sc_'; # table prefix used for this installation : do not use '-' (badly handeld by MySQL) $cookieprefix = 'SEMANTICSCUTTLE'; # cookieprefix : The prefix to use for the cookies on the site $usecache = false; # use cache ? {true,false} $dir_cache = dirname(__FILE__) .'/cache/'; # directory where cache files will be stored @@ -26,7 +25,7 @@ $dbport = '3306'; # Database port $dbuser = 'username'; # Database username $dbpass = 'password'; # Database password $dbname = 'scuttle'; # Database name -$tableprefix = 'sc_'; # table prefix used for this installation. Do not use '-' (badly handeld by MySQL) +$tableprefix = 'sc_'; # table prefix used for this installation. Do not use '-' (badly handeld by MySQL) ### Users ### |