Bugfix with missing array key on first form fill.

This commit is contained in:
Markus Birth 2016-08-04 18:11:31 +02:00
parent 868466e7d7
commit f5d4cbb385

View File

@ -108,7 +108,9 @@ if (!$tpl_done && $sm->hasSessionToken()) {
);
$fd = new FieldDefinition($action);
$fd->setPlaceholders($placeholders);
$fd->setFieldValues($_SESSION[$skey]);
if (isset($_SESSION[$skey])) {
$fd->setFieldValues($_SESSION[$skey]);
}
$by_group = $fd->getGroups();