From 243a0693e948eccc22f85174d42515d20368bc1e Mon Sep 17 00:00:00 2001 From: patdenice Date: Thu, 1 Oct 2009 10:43:26 +0000 Subject: 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 --- admin/plugins_list.php | 12 +++++++++--- 1 file 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 -- cgit v1.2.3