Variant titles showing up as blank if more than one variant on a page.
#940016: token support was not yet updated for D7.
#940446: Skip validation on back and cancel buttons in all wizards.
+#954492: Redirect not always working in wizard.inc
if (empty($form_state['ajax'])) {
// redirect, if one is set.
if ($form_state['redirect']) {
- call_user_func_array('drupal_goto', $form_state['redirect']);
+ if (is_array($form_state['redirect'])) {
+ call_user_func_array('drupal_goto', $form_state['redirect']);
+ }
+ else {
+ drupal_goto($form_state['redirect']);
+ }
}
}
else if (isset($form_state['ajax next'])) {