summaryrefslogtreecommitdiff
path: root/lib/default.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-12-06 17:19:41 -0500
committerEvan Prodromou <evan@status.net>2010-12-06 17:19:41 -0500
commitbb63fd4b75181e1e9429d3a62377dab72a5c0990 (patch)
tree7c203b5a51386d72013a51a9853baabc3727a117 /lib/default.php
parent8c4e14b59c649ff38159793a1e30229bcc4bf4d6 (diff)
Config flag to disable router caching if needed
Diffstat (limited to 'lib/default.php')
-rw-r--r--lib/default.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/default.php b/lib/default.php
index 7388046d3..029dbb390 100644
--- a/lib/default.php
+++ b/lib/default.php
@@ -328,4 +328,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
);