aboutsummaryrefslogtreecommitdiff
path: root/engine/settings.example.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-04-25 19:09:22 +0200
committerSem <sembrestels@riseup.net>2012-04-25 19:09:22 +0200
commit9fe063022e08a4b6fa5f5935f8f185d5d95814a4 (patch)
tree87377f7b889efc639935508556beb9baf010e821 /engine/settings.example.php
parent24690ed95198c093e6fbb91a94b5d0544c740f89 (diff)
downloadelgg-9fe063022e08a4b6fa5f5935f8f185d5d95814a4.tar.gz
elgg-9fe063022e08a4b6fa5f5935f8f185d5d95814a4.tar.bz2
Upgraded to Elgg 1.8.4.
Diffstat (limited to 'engine/settings.example.php')
-rw-r--r--engine/settings.example.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/engine/settings.example.php b/engine/settings.example.php
index e42f3e9c6..3b139d710 100644
--- a/engine/settings.example.php
+++ b/engine/settings.example.php
@@ -107,7 +107,7 @@ $CONFIG->broken_mta = FALSE;
*
* Elgg stores each query and its results in a query cache.
* On large sites or long-running scripts, this cache can grow to be
- * large. To disable query caching, set this to FALSE.
+ * large. To disable query caching, set this to TRUE.
*
* @global bool $CONFIG->db_disable_query_cache
*/
@@ -121,14 +121,3 @@ $CONFIG->db_disable_query_cache = FALSE;
* @global int $CONFIG->min_password_length
*/
$CONFIG->min_password_length = 6;
-
-/**
- * Multisite
- *
- * Override settings with the domain-specific seed configuration
- */
-$settings_path = dirname(__FILE__); // Change it to "/srv/seeds/" if you can
-$settings_path .= $_SERVER['HTTP_HOST']."/settings.php";
-if (is_readable($settings_path)) {
- include($settings_path);
-}