You are here

function date_locale_format_form_formats_cancel in Date 6.2

'Cancel' button handler for choosing a language on the date_locale_format_form.

1 string reference to 'date_locale_format_form_formats_cancel'
date_locale_format_form in date_locale/date_locale.module
Display list of enabled languages to configure date formats for.

File

date_locale/date_locale.module, line 263
Enable different locales to have their own date formats.

Code

function date_locale_format_form_formats_cancel($form, &$form_state) {
  $form_state['storage'] = FALSE;
  $form_state['rebuild'] = FALSE;
  $form_state['redirect'] = 'admin/settings/date-time/locale';
}