I'm refering to the input box when adding or modifiying products.
When I type a sentence and use a "return/enter tag" like this
-----------------------
1 (return)
2 (return)
3 (return)
-----------------------
Page output would be
--------------------
1
2
3
--------------------
This is correct and logical.
But I've added a new input box field called "Product Warranty"
So when I type in thie new input box
-----------------------
1 (return)
2 (return)
3 (return)
-----------------------
Page output would be
--------------------
123
--------------------
instead of
--------------------
1
2
3
--------------------
The weird thing is the database shows the input text as
--------------------
1
2
3
--------------------
but display is still
--------------------
123
--------------------
does it make sense ?
