Seems to be caused by line 669,
$data['comment'] = nl2br($comment) . '<br/><br/>' . $order_info['comment']; ,
in catalog/model/checkout/order.php
Code: Select all
if ($comment) {
if ($order_info['comment']) {
$data['comment'] = nl2br($comment) . '<br/><br/>' . $order_info['comment'];
} else {
$data['comment'] = nl2br($comment);
}
} else {
if ($order_info['comment']) {
$data['comment'] = $order_info['comment'];
} else {
$data['comment'] = '';
}
}