• Resolved mulli.bahr

    (@mullibahr)


    Lenix display of forms did not display email recipients.
    I saw in error log that ’email_to’ is not defined.
    With the following changes (line 150-151) I can see (single) email recipient, which is what I have. And no warning in log.
    The fix:

    $email_recipes = isset($form['form_data']['settings']['email_to'])? explode(',',$form['form_data']['settings']['email_to']):"";
    			$email_recipes = $email_recipes != "" ? implode('<br>',$email_recipes) : "";
    

    Hope it helps.

    This “fix” requires more attention. I made the minimum for my purposes.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Bug & fix… Email recipients are not displayed’ is closed to new replies.