#236657 by swentel: Fix order of arguments in system_clear_cache_submit().

merge-requests/26/head
Angie Byron 2009-06-08 04:48:43 +00:00
parent 5d58e91623
commit 276997a183
1 changed files with 1 additions and 1 deletions

View File

@ -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.'));
}