summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-08 04:48:43 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-08 04:48:43 +0000
commit276997a183bcea6940c67900044d869058fd6ce4 (patch)
treefd2eef02e243e75ae1823de6b29712b123f922a8 /modules/system/system.admin.inc
parent5d58e9162312671f60eb2e9266a3ade08f791aac (diff)
downloadbrdo-276997a183bcea6940c67900044d869058fd6ce4.tar.gz
brdo-276997a183bcea6940c67900044d869058fd6ce4.tar.bz2
#236657 by swentel: Fix order of arguments in system_clear_cache_submit().
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 5fe1c2424..ba0024574 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1380,7 +1380,7 @@ function system_performance_settings() {
*
* @ingroup forms
*/
-function system_clear_cache_submit(&$form_state, $form) {
+function system_clear_cache_submit($form, &$form_state) {
drupal_flush_all_caches();
drupal_set_message(t('Caches cleared.'));
}