From: Matthijs Kooijman Date: Thu, 7 May 2009 15:59:03 +0000 (+0200) Subject: phpldapadmin: Set the custom_templates_only option. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fservers%2Fdrsnuggles.git;a=commitdiff_plain;h=7d72d573ec980bed29ca0a7508171f92f1c1076c phpldapadmin: Set the custom_templates_only option. This makes phpldapadmin ignore all its shipped templates and only offer ones we create ourselves (distinguished by the "custom_" filename prefix). --- diff --git a/etc/phpldapadmin/config.php b/etc/phpldapadmin/config.php index 18c8892..6d6a00e 100644 --- a/etc/phpldapadmin/config.php +++ b/etc/phpldapadmin/config.php @@ -119,6 +119,9 @@ $config->custom->commands['all'] = array( // Use the displayName in the tree view, when available. $config->custom->appearance['tree_display_formats'] = array("%displayName", "%rdnValue"); +// Only use custom templates (starting with custom_) +$config->custom->appearance['custom_templates_only'] = true; + /* If you want to choose the appearance of the tree, specify a class name which inherits from the Tree class. */ // $config->custom->appearance['tree'] = "AJAXTree";