summaryrefslogtreecommitdiff
path: root/lib/default.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-12-07 12:13:50 -0800
committerBrion Vibber <brion@pobox.com>2010-12-07 12:13:50 -0800
commit001512df966c8c3b8f045f645e804b0a6fef8625 (patch)
tree3dc6f908daf11571f75bb222745c01313badeeb2 /lib/default.php
parentdb4d69f09953ddf89d6c970b40ca6a4094bf6e52 (diff)
parentb35352790f17ddaca4debe767f22198cf0343cbc (diff)
Merge branch 'master' of gitorious.org:statusnet/mainline
Diffstat (limited to 'lib/default.php')
-rw-r--r--lib/default.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/default.php b/lib/default.php
index a19453fce..85d27f522 100644
--- a/lib/default.php
+++ b/lib/default.php
@@ -59,7 +59,8 @@ $default =
'textlimit' => 140,
'indent' => true,
'use_x_sendfile' => false,
- 'notice' => null // site wide notice text
+ 'notice' => null, // site wide notice text
+ 'build' => 1, // build number, for code-dependent cache
),
'db' =>
array('database' => 'YOU HAVE TO SET THIS IN config.php',
@@ -323,4 +324,6 @@ $default =
array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt')
'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
),
+ 'router' =>
+ array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel
);