From 223b806a81f41722a4f45b9e7564abd0d465cd16 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 19 Sep 2011 22:01:13 -0400 Subject: [PATCH] make performance optimization off by default --- lib/default.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/default.php b/lib/default.php index 71b2257cd5..8748b64580 100644 --- a/lib/default.php +++ b/lib/default.php @@ -351,5 +351,6 @@ $default = 'router' => array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel 'discovery' => - array('cors' => false) // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.) + array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.) + 'performance' => array('high' => false) // disable some features for higher performance; default false ); -- 2.39.5