diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-20 23:23:22 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-20 23:23:22 +0000 |
commit | 4160e524d613c840811ee18fd8b0f303be58fba4 (patch) | |
tree | 57b452e979b9dbf0ada93eb109a2d0bf07f78dc7 /actions/admin/plugins/disable.php | |
parent | 32394a4b178c9e580a2d0ab9f7a3bcc35defb40c (diff) | |
download | elgg-4160e524d613c840811ee18fd8b0f303be58fba4.tar.gz elgg-4160e524d613c840811ee18fd8b0f303be58fba4.tar.bz2 |
Refs #2537 - merged [7026] into trunk from 1.7 branch
git-svn-id: http://code.elgg.org/elgg/trunk@7110 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/admin/plugins/disable.php')
-rw-r--r-- | actions/admin/plugins/disable.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/admin/plugins/disable.php b/actions/admin/plugins/disable.php index 3207e6800..5ad49d2c7 100644 --- a/actions/admin/plugins/disable.php +++ b/actions/admin/plugins/disable.php @@ -27,8 +27,9 @@ foreach ($plugin as $p) { } } -// need to reset caches for new view locations and cached view output. -elgg_view_regenerate_simplecache(); +// don't regenerate the simplecache because the plugin won't be +// loaded until next run. Just invalidate and let it regnerate as needed +elgg_invalidate_simplecache(); elgg_filepath_cache_reset(); forward($_SERVER['HTTP_REFERER']); |