diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-21 12:16:53 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-21 12:16:53 -0500 |
commit | 3874c13a404dafd526d7e34ca660239dc34dd300 (patch) | |
tree | 98c9ca49fac6b640ce7b9b3fcfbb22855807af8d /mod/developers | |
parent | a2cfbdeb100324090ffe19d58aeb71c2def83ac8 (diff) | |
download | elgg-3874c13a404dafd526d7e34ca660239dc34dd300.tar.gz elgg-3874c13a404dafd526d7e34ca660239dc34dd300.tar.bz2 |
switched the function names to system cache
Diffstat (limited to 'mod/developers')
-rw-r--r-- | mod/developers/actions/developers/settings.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/developers/actions/developers/settings.php b/mod/developers/actions/developers/settings.php index 811fd22c0..6249821a2 100644 --- a/mod/developers/actions/developers/settings.php +++ b/mod/developers/actions/developers/settings.php @@ -12,9 +12,9 @@ if (get_input('simple_cache')) { } if (get_input('view_path_cache')) { - elgg_enable_filepath_cache(); + elgg_enable_system_cache(); } else { - elgg_disable_filepath_cache(); + elgg_disable_system_cache(); } $debug = get_input('debug_level'); |