splitbrain / dokuwiki-plugin-bureaucracy

Create forms and generate pages or emails from them
http://www.dokuwiki.org/plugin:bureaucracy
GNU General Public License v2.0
43 stars 47 forks source link

Bug fix for text area field #208

Open moisesbr-dw opened 7 years ago

moisesbr-dw commented 7 years ago

In fact, there are two bug fixes related to text area field in this PR.

  1. correct HTML generation

bugged <textarea name="bureaucracy[11]" id="" rows="15" cols="10" class="edit required&quot; required=&quot;required"></textarea>

fixed <textarea name="bureaucracy[11]" id="" rows="15" cols="10" class="edit required" required="required"></textarea>

  1. correct e-mail generation

Newlines in text area content are replaced by <br> tags in the e-mail text.