$data['comment'] = nl2br($order_info['comment']);
но вот это только в одном месте прописанно
// Totals
$data['totals'] = array();
$totals = $this->model_account_order->getOrderTotals($this->request->get['order_id']);
foreach ($totals as $total) {
$data['totals'][] = array(
'title' => $total['title'],
'text' => $this->currency->format($total['value'], $order_info['currency_code'], $order_info['currency_value']),
);
}
$data['comment'] = html_entity_decode($order_info['comment'], ENT_QUOTES, 'UTF-8');