Hi All,
The submit button 'cancel' in my frontend form (Seblod latest version) does nothing.
The source code of the button seems weird so I looked at button_submit.php.
There I found in line 199-201: if ( $task == 'cancel' ) { $click = ' history.back(1)';}. Changing this in: if ( $task == 'cancel' ) { $click = ' onclick="history.back(1)"';} made the button work again.
Greetings