diff options
author | patdenice <patdenice@piwigo.org> | 2009-10-01 10:43:26 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2009-10-01 10:43:26 +0000 |
commit | 243a0693e948eccc22f85174d42515d20368bc1e (patch) | |
tree | 05a107e9bc6d3c39e9413f77c1a0aa5d263f82d9 /admin/plugins_list.php | |
parent | c3a950d1eaf13e878903d65c4876298113290746 (diff) |
merge r3949 from branch 2.0 to trunk
Purge compiled templates when activate or deactivate a plugin.
Cf topic:16250 on french forum.
git-svn-id: http://piwigo.org/svn/trunk@3950 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/plugins_list.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/admin/plugins_list.php b/admin/plugins_list.php index ed115dbb7..2b12f171c 100644 --- a/admin/plugins_list.php +++ b/admin/plugins_list.php @@ -38,10 +38,16 @@ $plugins = new plugins(); //--------------------------------------------------perform requested actions if (isset($_GET['action']) and isset($_GET['plugin']) and !is_adviser()) { - $page['errors'] = - $plugins->perform_action($_GET['action'], $_GET['plugin']); + $page['errors'] = $plugins->perform_action($_GET['action'], $_GET['plugin']); - if (empty($page['errors'])) redirect($base_url); + if (empty($page['errors'])) + { + if ($_GET['action'] == 'activate' or $_GET['action'] == 'deactivate') + { + $template->delete_compiled_templates(); + } + redirect($base_url); + } } //--------------------------------------------------------------------Tabsheet |