We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 39498
    • 169 Posts
    I have an childresoure update processor with this validation rule

            if (empty($data['eventstart'])) {
                $updateerror = true;
                $errormsg = 'Bitte geben Sie ein Datum ein';
                return;
            }
    


    The rule blocks correctly the save. But no error messeage is displayed.