diff options
Diffstat (limited to 'actions/admin/plugins')
-rw-r--r-- | actions/admin/plugins/disable.php | 4 | ||||
-rw-r--r-- | actions/admin/plugins/disableall.php | 4 | ||||
-rw-r--r-- | actions/admin/plugins/enable.php | 4 | ||||
-rw-r--r-- | actions/admin/plugins/enableall.php | 5 | ||||
-rw-r--r-- | actions/admin/plugins/reorder.php | 4 |
5 files changed, 5 insertions, 16 deletions
diff --git a/actions/admin/plugins/disable.php b/actions/admin/plugins/disable.php index 32ae451a7..f0e07d49b 100644 --- a/actions/admin/plugins/disable.php +++ b/actions/admin/plugins/disable.php @@ -33,9 +33,7 @@ } elgg_view_regenerate_simplecache(); - - $cache = elgg_get_filepath_cache(); - $cache->delete('view_paths');
+ elgg_filepath_cache_reset();
forward($_SERVER['HTTP_REFERER']); exit; diff --git a/actions/admin/plugins/disableall.php b/actions/admin/plugins/disableall.php index a01b74fa5..00a5713d5 100644 --- a/actions/admin/plugins/disableall.php +++ b/actions/admin/plugins/disableall.php @@ -30,9 +30,7 @@ } elgg_view_regenerate_simplecache(); - - $cache = elgg_get_filepath_cache(); - $cache->delete('view_paths');
+ elgg_filepath_cache_reset();
forward($_SERVER['HTTP_REFERER']); exit; diff --git a/actions/admin/plugins/enable.php b/actions/admin/plugins/enable.php index d81ab0551..841bc9aae 100644 --- a/actions/admin/plugins/enable.php +++ b/actions/admin/plugins/enable.php @@ -33,9 +33,7 @@ } elgg_view_regenerate_simplecache(); - - $cache = elgg_get_filepath_cache(); - $cache->delete('view_paths'); + elgg_filepath_cache_reset(); forward($_SERVER['HTTP_REFERER']); exit; diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php index f31b4593d..7789e1e6d 100644 --- a/actions/admin/plugins/enableall.php +++ b/actions/admin/plugins/enableall.php @@ -31,10 +31,7 @@ // Regen view cache elgg_view_regenerate_simplecache(); - - // Regen paths cache - $cache = elgg_get_filepath_cache(); - $cache->delete('view_paths'); + elgg_filepath_cache_reset(); forward($_SERVER['HTTP_REFERER']); exit; diff --git a/actions/admin/plugins/reorder.php b/actions/admin/plugins/reorder.php index 0e328f54d..c42f5fda1 100644 --- a/actions/admin/plugins/reorder.php +++ b/actions/admin/plugins/reorder.php @@ -47,9 +47,7 @@ register_error(sprintf(elgg_echo('admin:plugins:reorder:no'), $plugin));
elgg_view_regenerate_simplecache(); - - $cache = elgg_get_filepath_cache(); - $cache->delete('view_paths');
+ elgg_filepath_cache_reset();
forward($_SERVER['HTTP_REFERER']);
|