From 75fd2aea7bfce9db3ffd4ab770cf3bf0c4e58f7c Mon Sep 17 00:00:00 2001 From: Markus Nestmann <38976632+MarkejN@users.noreply.github.com> Date: Tue, 22 Mar 2022 21:17:07 +0100 Subject: [PATCH] Fix default value of sessionRefParam (#59) --- dca/tl_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dca/tl_form.php b/dca/tl_form.php index fba0827..1d972db 100644 --- a/dca/tl_form.php +++ b/dca/tl_form.php @@ -29,7 +29,7 @@ $GLOBALS['TL_DCA']['tl_form']['fields']['mp_forms_sessionRefParam'] = [ 'exclude' => true, - 'default' => 'step', + 'default' => 'ref', 'inputType' => 'text', 'eval' => ['tl_class' => 'w50', 'maxlength' => 255], 'sql' => "varchar(255) NOT NULL default 'ref'"