diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-21 12:31:25 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-21 12:31:25 -0500 |
commit | 8e4d4c50df3f19be4ad9c204797e57ecd9ba02b3 (patch) | |
tree | 194c0aacb9a2d3ea15d9b6143b6e174715339b5f /views/default/forms | |
parent | 3874c13a404dafd526d7e34ca660239dc34dd300 (diff) | |
download | elgg-8e4d4c50df3f19be4ad9c204797e57ecd9ba02b3.tar.gz elgg-8e4d4c50df3f19be4ad9c204797e57ecd9ba02b3.tar.bz2 |
updated the display to show system cache language
Diffstat (limited to 'views/default/forms')
-rw-r--r-- | views/default/forms/admin/site/update_advanced.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/default/forms/admin/site/update_advanced.php b/views/default/forms/admin/site/update_advanced.php index f79a235b5..786feb101 100644 --- a/views/default/forms/admin/site/update_advanced.php +++ b/views/default/forms/admin/site/update_advanced.php @@ -40,11 +40,11 @@ $form_body .= elgg_view("input/checkboxes", array( 'name' => 'simplecache_enabled', 'value' => (elgg_get_config('simplecache_enabled') ? elgg_echo('installation:simplecache:label') : ""), )) . "</div>"; -$form_body .= "<div>" . elgg_echo('installation:viewpathcache:description') . "<br />"; +$form_body .= "<div>" . elgg_echo('installation:systemcache:description') . "<br />"; $form_body .= elgg_view("input/checkboxes", array( - 'options' => array(elgg_echo('installation:viewpathcache:label') => elgg_echo('installation:viewpathcache:label')), - 'name' => 'viewpath_cache_enabled', - 'value' => (elgg_get_config('viewpath_cache_enabled') ? elgg_echo('installation:viewpathcache:label') : ""), + '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') : ""), )) . "</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')); |