? .git
? 883902_ctools_remove_color_module_0.patch
? 900570-no-such-thing-as-expand.patch
? 911396-1_fix_notice.patch
? 920266-panels-simple_cache-t.patch
? 922442_ctools_css_include_2.patch
? 931434.patch
? 940016-fix-basic-token-support.patch
? 940446-back-cancel-skip-validate.patch
? 954492-redirect-may-not-be-array.patch
? advanced-help-ctools-export-ui-1.patch
? ctools-358953-12.patch
? ctools-938778_0.patch
? ctools-redirect-options-1.patch
? ctools_css_disassemble.patch
? wizard.html_.patch
? ctools_ajax_sample/images
? includes/form.inc
? stylizer/help
Index: includes/wizard.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ctools/includes/wizard.inc,v
retrieving revision 1.19
diff -u -p -r1.19 wizard.inc
--- includes/wizard.inc	26 Oct 2010 23:54:00 -0000	1.19
+++ includes/wizard.inc	27 Oct 2010 18:31:49 -0000
@@ -191,7 +191,12 @@ function ctools_wizard_multistep_form($f
     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'])) {
