I'm using a costumized changesettings template to call every field manually, which used to work fine under version 1.22.3. After some adaptions, it's working again, but with one exception. The field with the birth date shows up normally, but everytime I'm trying to save the settings, I get an error message, that one required field, in this case the birth date, was empty. Even if the birth date is show correctly.
The code I'm using to call the field:
Code: Select all
{foreach $controls as $key=>$field}
{if isset($field->name)}
{assign var=$field->name value=$field}
{else}
{assign var=$field->propname value=$field}
{/if}
{$gebuertsdatum->prompt} {$gebuertsdatum->marker}:{$gebuertsdatum->control}
The site is running with CMS 1.21.1 in production.
Thanks for any suggestions!