TTS 0.9.9 is duplicating newlines in the ticket
details.
This is due to a misplaced nl2br in
viewticket_details.php
replace
$details_string = nl2br(stripslashes($phpgw->db->f
("t_detail")));
by
$details_string = stripslashes($phpgw->db->f
("t_detail"));
and
if (! empty($txtAdditional)) { $txtDetail .=
$txtAdditional; }
by
if (! empty($txtAdditional)) { $txtDetail .= nl2br
($txtAdditional); }
and everything will work fine....
have fun !
Logged In: YES
user_id=188004
I'm no longer anonymous.
regards.