diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-29 14:57:50 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-29 14:57:50 +0000 |
commit | 118e91cc4048905446ee46fa87af60a96c996c8e (patch) | |
tree | 711299f43ce8fb8e9a872910bc8bb146944c7c9b /modules/system/system.admin.inc | |
parent | 89aef5b74f6eff31f80427e246a7a81fe52feb42 (diff) | |
download | brdo-118e91cc4048905446ee46fa87af60a96c996c8e.tar.gz brdo-118e91cc4048905446ee46fa87af60a96c996c8e.tar.bz2 |
#155828 by Eaton, pwolanin and jvandyk: let actions live even if actions.module is not turned on
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 57dec37e6..fb71b4762 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -817,6 +817,9 @@ function system_modules_submit($form, &$form_state) { // path after that. module_invoke('locale', 'system_update', $new_modules); + // Synchronize to catch any actions that were added or removed. + actions_synchronize(); + return; } |