Summary:
{foreach from=$reservation.notes item='onenote'} shows more than notes.
Detailed Description:
WIth the following logic in the confirmation template, not only the notes, but
more is showing... WIthout this, the reservation shows, with this logic, the
reservation + confirmation (kind of doubling the logic)..
{foreach from=$reservation.notes item='onenote'}
<div class="row" style="margin-bottom: 0.5em;">
<div style="width: 50%; float: left;">{$mod->Lang('subject')}:
{$onenote.subject}</div>
<div style="width: 49%; float: left;">{$mod->Lang('created')}:
{$onenote.create_date|cms_date_format}</div>
<p>{$onenote.text}</p>
</div>
{/foreach}