diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-24 17:59:12 -0800 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-24 17:59:12 -0800 |
commit | 618263935a0b01bcef7a94153a41be1a6170154a (patch) | |
tree | 99c04314de2b669e8aef22c61ffa24f9aa6b14c5 /mod/developers/actions | |
parent | 54bef9fc0b85acaf6950e618bd02aa50befd2acc (diff) | |
parent | 7c962fa6cbaf687daafb8588ff601fe664e1392c (diff) | |
download | elgg-618263935a0b01bcef7a94153a41be1a6170154a.tar.gz elgg-618263935a0b01bcef7a94153a41be1a6170154a.tar.bz2 |
Merge pull request #151 from cash/system_cache
Turn viewpath cache into a system cache
Diffstat (limited to 'mod/developers/actions')
-rw-r--r-- | mod/developers/actions/developers/settings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/developers/actions/developers/settings.php b/mod/developers/actions/developers/settings.php index 811fd22c0..7c91e2f5f 100644 --- a/mod/developers/actions/developers/settings.php +++ b/mod/developers/actions/developers/settings.php @@ -11,10 +11,10 @@ if (get_input('simple_cache')) { elgg_disable_simplecache(); } -if (get_input('view_path_cache')) { - elgg_enable_filepath_cache(); +if (get_input('system_cache')) { + elgg_enable_system_cache(); } else { - elgg_disable_filepath_cache(); + elgg_disable_system_cache(); } $debug = get_input('debug_level'); |