diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-14 09:05:02 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-14 09:06:40 +0200 |
commit | 70ef48c2f311f1773a4b4deb8fcffd8ea72326f9 (patch) | |
tree | 8902d69def107efe900787ba9f3d8275e882cd31 /installer/config.php | |
parent | 853d0ab2a402222cc87dc83bb27c3fb2f33d84aa (diff) |
Remove old enable_caching option from Installer
Diffstat (limited to 'installer/config.php')
-rw-r--r-- | installer/config.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/installer/config.php b/installer/config.php index d6846edc7..97a51280c 100644 --- a/installer/config.php +++ b/installer/config.php @@ -15,7 +15,6 @@ $RCI->load_defaults(); // register these boolean fields $RCI->bool_config_props = array( 'ip_check' => 1, - 'enable_caching' => 1, 'enable_spellcheck' => 1, 'auto_create_user' => 1, 'smtp_log' => 1, @@ -127,16 +126,6 @@ echo $check_ipcheck->show(intval($RCI->getprop('ip_check')), array('value' => 1) <p class="hint">This increases security but can cause sudden logouts when someone uses a proxy with changing IPs.</p> </dd> -<dt class="propname">enable_caching</dt> -<dd> -<?php - -$check_caching = new html_checkbox(array('name' => '_enable_caching', 'id' => "cfgcache")); -echo $check_caching->show(intval($RCI->getprop('enable_caching')), array('value' => 1)); - -?> -<label for="cfgcache">Cache messages in local database</label><br /> -</dd> <dt class="propname">enable_spellcheck</dt> <dd> |