diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-12 22:27:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-12 22:27:14 +0000 |
commit | 2b010ef522218ff951ac2d040e9b3bf2749c80e7 (patch) | |
tree | c6fe626dcc8f35e1c45331120ceab2c46f15199e /modules/system | |
parent | f3c5932a8adacff19491e59fd4d768e22cfbb6f6 (diff) | |
download | brdo-2b010ef522218ff951ac2d040e9b3bf2749c80e7.tar.gz brdo-2b010ef522218ff951ac2d040e9b3bf2749c80e7.tar.bz2 |
- Patch #151256 by Chris Kennedy: fapi fix for saving date and time settings.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 2ba242e22..fa82a9a11 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -972,7 +972,7 @@ function system_date_time_settings_submit($form, &$form_state) { if ($form_state['values']['date_format_long'] == 'custom') { $form_state['values']['date_format_long'] = $form_state['values']['date_format_long_custom']; } - return system_settings_form_submit($form_state['values'], $form, $form_state); + return system_settings_form_submit($form, $form_state); } /** |