Quote:
Originally Posted by Mrajp
I got it installed on vB 3.7 and have taken care of most of the html issues. Unfortunately, when using a "Text Area" style field, <br /> Tags are placed after each line entry. Yes, I know I dont have HTML turned on, I dont want it on. Below is what it places into my edit box.
Code:
Customer: --No Customer--
Issue Type: Configuration
Problem: gregre<br />
gre<br />
<br />
gregre
Resolution: gregre<br />
gre<br />
<br />
gre
Anybody know of a way to eliminate those "<br />" Tags?
|
This worked for me as a solution to this issue:
using the plugin manager edit newthread_post_start
comment out the line:
Code:
$value = nl2br($value);
so it becomes
Code:
// $value = nl2br($value);
as this is the line inserting the <br />s
worked for mee...