diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-21 12:44:55 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-21 12:44:55 -0500 |
commit | 19a6962c819dc33a0967dcef56154f6930b52287 (patch) | |
tree | f81d3530358a4056caf12a695d0700b0c232a69d /views | |
parent | 8e4d4c50df3f19be4ad9c204797e57ecd9ba02b3 (diff) | |
download | elgg-19a6962c819dc33a0967dcef56154f6930b52287.tar.gz elgg-19a6962c819dc33a0967dcef56154f6930b52287.tar.bz2 |
Fixes #4180 finished conversion to system cache by converting datalist/CONFIG var name
Diffstat (limited to 'views')
-rw-r--r-- | views/default/forms/admin/site/update_advanced.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/forms/admin/site/update_advanced.php b/views/default/forms/admin/site/update_advanced.php index 786feb101..b935090f0 100644 --- a/views/default/forms/admin/site/update_advanced.php +++ b/views/default/forms/admin/site/update_advanced.php @@ -44,7 +44,7 @@ $form_body .= "<div>" . elgg_echo('installation:systemcache:description') . "<br $form_body .= elgg_view("input/checkboxes", array( 'options' => array(elgg_echo('installation:systemcache:label') => elgg_echo('installation:systemcache:label')), 'name' => 'system_cache_enabled', - 'value' => (elgg_get_config('viewpath_cache_enabled') ? elgg_echo('installation:systemcache:label') : ""), + 'value' => (elgg_get_config('system_cache_enabled') ? elgg_echo('installation:systemcache:label') : ""), )) . "</div>"; $debug_options = array('0' => elgg_echo('installation:debug:none'), 'ERROR' => elgg_echo('installation:debug:error'), 'WARNING' => elgg_echo('installation:debug:warning'), 'NOTICE' => elgg_echo('installation:debug:notice')); |