Topic: comment in view_sales_order.php

in view_sales_order.php  line:
label_row(_("Comments"), ($_SESSION['View']->Comments), "class='tableheader2'", "colspan=3");

i think it should be replaced with:
label_row(_("Comments"), nl2br($_SESSION['View']->Comments), "class='tableheader2'", "colspan=3");

this way comments about different sales items will make more sense and be easier to read

Re: comment in view_sales_order.php

you also might want to consider changing line 325 in - ui_view.inc - with this:
echo nl2br($comment["memo_"]) . "<br>";

Re: comment in view_sales_order.php

I will have a look at this.

/Joe

Re: comment in view_sales_order.php

Thanks Joe for the fix.