It seems that only the HTML format of Order Confirmation show no line break.
And the one with Text format don't have this problem.
Had tried to add a <br /> to the file below and in the test the attruibute line show with line break.
the file to modifiy is:
includes/classes/order.php
NOTE:
This is the classes file and no override.
Don't forget to backup your files before and after any modifications.
You are at your own risk, anything wrong will cause troubles to your system.
For v1.3.5, at about line no. 829
For v1.3.0.2, at about line no. 806
Find the following line
PHP Code:
$this->products_ordered_attributes .= "\n\t" . $attributes_values->fields['products_options_name'] . ' ' . zen_decode_specialchars($this->products[$i]['attributes'][$j]['value']);
at the end of the line, before the ; add the follow: Note: there is a leading space in the beginning
And read as follow:
PHP Code:
$this->products_ordered_attributes .= "\n\t" . $attributes_values->fields['products_options_name'] . ' ' . zen_decode_specialchars($this->products[$i]['attributes'][$j]['value']) . '<br />';