Text to go in the release notes:
|
This patch alters the way errors/successes are counted in auto renewals. Prior to this patch, using [% error %] in a template would provide a count of all items not renewed, even if 'too_soon'
After this patch [% error + results.auto_too_soon %] will provide the same count, or you can get a count of each error in the results variable
e.g.
Some items were not renewed:
[% FOREACH key in results.keys %]
[% results.$key %] item(s) were not renewed for reason [% key %]
[% END %]
|