View | Details | Raw Unified | Return to bug 24378
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_24378_auto_renewals.perl (-1 / +1 lines)
Lines 27-33 if( CheckVersion( $DBversion ) ) { Link Here
27
    });
27
    });
28
    $dbh->do(q{
28
    $dbh->do(q{
29
        UPDATE letter SET
29
        UPDATE letter SET
30
        content = REPLACE(content, "The following item [% biblio.title %] has correctly been renewed and is now due [% checkout.date_due %]", "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due %]
30
        content = REPLACE(content, "The following item [% biblio.title %] has correctly been renewed and is now due [% checkout.date_due | $KohaDates as_due_date => 1 %]", "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due %]
31
")
31
")
32
        WHERE code = 'AUTO_RENEWALS';
32
        WHERE code = 'AUTO_RENEWALS';
33
    });
33
    });
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 14456-14462 if( CheckVersion( $DBversion ) ) { Link Here
14456
        Your total unpaid fines are too high.
14456
        Your total unpaid fines are too high.
14457
        [% END %]
14457
        [% END %]
14458
        [% ELSE %]
14458
        [% ELSE %]
14459
        The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due %]
14459
        The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due | $KohaDates as_due_date => 1 %]
14460
        [% END %]", 'email');
14460
        [% END %]", 'email');
14461
    });
14461
    });
14462
14462
14463
- 

Return to bug 24378