Skip to content

Commit

Permalink
fix: possible notice in redirect form plugin in buildJumpPage()
Browse files Browse the repository at this point in the history
  • Loading branch information
pollen8 committed Oct 28, 2013
1 parent 8e63829 commit 2140c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/fabrik_form/redirect/redirect.php
Expand Up @@ -244,7 +244,7 @@ protected function buildJumpPage()
foreach ($groups as $group)
{
$elements = $group->getPublishedElements();
$tmpData = $formModel->fullFormData;
$tmpData = !is_null($formModel->fullFormData) ? $formModel->fullFormData : $formModel->formDataWithTableName;

foreach ($elements as $elementModel)
{
Expand Down

0 comments on commit 2140c9b

Please sign in to comment.