Aug 23rd, 2009, 5:42 PM
Hi there
firstly amazing piece of work, used version 1 a few times and this is even tighter.
The only issue I encountered was the line breaks in HTML emails from textarea fields being stripped out of my emails (using phpmail, smpt wasnt available).
Breaks we're still there on the backend when I browsed the submission. Field type was set as textarea.
I resolved the issue with my limited ability by changing line 1242 in global/code/emails.php to:
i.e. added in the nl2br()
Seems to work fine for me but perhaps I've done something wrong or missed some other setting.
Maybe this is of assistance to someone else or perhaps its a minor bug
Again great piece of work.
firstly amazing piece of work, used version 1 a few times and this is even tighter.
The only issue I encountered was the line breaks in HTML emails from textarea fields being stripped out of my emails (using phpmail, smpt wasnt available).
Breaks we're still there on the backend when I browsed the submission. Field type was set as textarea.
I resolved the issue with my limited ability by changing line 1242 in global/code/emails.php to:
PHP Code:
$placeholders["ANSWER_$field_name"] = nl2br($field["content"]);
i.e. added in the nl2br()
Seems to work fine for me but perhaps I've done something wrong or missed some other setting.
Maybe this is of assistance to someone else or perhaps its a minor bug
Again great piece of work.