Small bug in “Return to form” setting
-
if(isset($this->rr_display_options['return-to-form']) && $this->rr_display_options['return-to-form'] == 'checked') {
This check doesn’t work since the option is listed under “form options”. The code should be:
if(isset($this->rr_form_options['return-to-form']) && $this->rr_form_options['return-to-form'] == 'checked') {
Can you please update this?
- The topic ‘Small bug in “Return to form” setting’ is closed to new replies.