I am receiving an this error when submitting a webform,

warning: implode(): Bad arguments. in /home/mwdb0230/public_html/includes/theme.inc on line 474.

Currently running Drupal 4.5.0 and Marvin_2Kphptemplate.

Any suggestions on what is wrong

Thank You in advance for your assistance.

CommentFileSizeAuthor
#1 webform_12804.diff668 bytesullgren

Comments

ullgren’s picture

Assigned: Unassigned » ullgren
Category: support » bug
StatusFileSize
new668 bytes

Used the wrong theme hooks to generate the confirmation page.
In webform.module look for the function _webform_thanks() and then change:

print theme('page', theme('node', $node), false, false);

to:

print theme('page', theme('node', $node, FALSE, TRUE), $node->title);
ullgren’s picture

Marked as fixed.

ullgren’s picture