summaryrefslogtreecommitdiffstatshomepage
path: root/config.inc.php.example
diff options
context:
space:
mode:
authorGravatar ericdane2008-03-05 15:50:27 +0000
committerGravatar ericdane2008-03-05 15:50:27 +0000
commita68d04c9e374ebc043a0c5edd051be0a7d9a9d4f (patch)
tree1454e763177d09f86113dc9b446bbe0ad651126b /config.inc.php.example
parentce500d1aaf4207d93608a1c56e193313f7cc8114 (diff)
downloadscuttle-a68d04c9e374ebc043a0c5edd051be0a7d9a9d4f.tar.gz
scuttle-a68d04c9e374ebc043a0c5edd051be0a7d9a9d4f.zip
minor fix : config : table prefix naming and locales available choices
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@55 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'config.inc.php.example')
-rw-r--r--config.inc.php.example4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.inc.php.example b/config.inc.php.example
index 4c76c9d..daa1d8a 100644
--- a/config.inc.php.example
+++ b/config.inc.php.example
@@ -95,7 +95,7 @@ $dbname = 'scuttle';
$sitename = 'SemanticScuttle';
$welcomeMessage = 'More than tags...';
-$locale = 'en_GB';
+$locale = 'en_GB'; # in 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
$top_include = 'top.inc.php';
$bottom_include = 'bottom.inc.php';
$shortdate = 'd-m-Y';
@@ -107,7 +107,7 @@ $defaultOrderBy = 'date_desc';
$TEMPLATES_DIR = dirname(__FILE__) .'/templates/';
$root = NULL;
$cookieprefix = 'SCUTTLE';
-$tableprefix = 'sc_';
+$tableprefix = 'sc_'; # do not use '-' (badly handeld by MySQL)
$adminemail = 'admin@example.org';
$cleanurls = false;