aboutsummaryrefslogtreecommitdiff
path: root/data/config.default.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2010-08-12 20:49:35 +0200
committerChristian Weiske <cweiske@cweiske.de>2010-08-12 20:49:35 +0200
commit0a8dadf87e660e9bf205581f12f7af87bfabf6ca (patch)
treea1218f869401a1ffff764a58c28a0be674ba5362 /data/config.default.php
parentb25290cef48251a31cb0f693a53677b566c1b1a4 (diff)
parent31570df64ce6543de407e7b9d751ba9033d930de (diff)
downloadsemanticscuttle-0a8dadf87e660e9bf205581f12f7af87bfabf6ca.tar.gz
semanticscuttle-0a8dadf87e660e9bf205581f12f7af87bfabf6ca.tar.bz2
Merge branch 'master' into pearpkg
Diffstat (limited to 'data/config.default.php')
-rw-r--r--data/config.default.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/data/config.default.php b/data/config.default.php
index 1b040c0..4f45eac 100644
--- a/data/config.default.php
+++ b/data/config.default.php
@@ -180,6 +180,15 @@ $dbname = 'scuttle';
*/
$tableprefix = 'sc_';
+/*
+ * If the database needs to be switched to UTF8
+ * manually or not. If true, a "SET NAMES UTF8" query
+ * will be sent at the beginning. If you need performance,
+ * save this query and set it in your mysql server options.
+ *
+ * @var boolean
+ */
+$dbneedssetnames = true;
/***************************************************
@@ -714,4 +723,16 @@ $authDebug = false;
* @var string
*/
$authEmailSuffix = null;
+
+
+
+
+/**
+ * URL unittests are being run against
+ * Has to have a trailing slash
+ *
+ * @var string
+ */
+$unittestUrl = null;
+
?>