An issue that resulted in some days being repeated if a certain combination of template code was used has been fixed. This impacted Planner 2.0 itineraries only.
For example a template that uses a cost category type filter begin/end around they day placeholder like what is shown below, might have experienced this issue.
<table>
{departureday.begin}
{transfers&activities&meals&others.begin}
<tr>
<td colspan="2">
Day {day} {other.p15_name}</span>
</td>
</tr>
{repeater.begin}
<tr>
<td></td>
<td>
{valuesrequired.begin}{p15_description1}{valuesrequired.end}
</td>
</tr>
{repeater.end}
{transfers&activities&meals&others.end}
{departureday.end}
</table>The correct template would move the day placeholder outside of the filter like this
<table>
{departureday.begin}
<tr>
<td colspan="2">
Day {day} {other.p15_name}</span>
</td>
</tr>
{transfers&activities&meals&others.begin}
{repeater.begin}
<tr>
<td></td>
<td>
{valuesrequired.begin}{p15_description1}{valuesrequired.end}
</td>
</tr>
{repeater.end}
{transfers&activities&meals&others.end}
{departureday.end}
</table>