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

(-)a/installer/data/mysql/atomicupdate/bug_28258_update_auto_renewals_template.perl (-1 / +10 lines)
Line 0 Link Here
0
- 
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        UPDATE letter SET
5
        content = REPLACE(content, "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due as_due_date => 1 %]" , "The following item, [% biblio.title %], has correctly been renewed and is now due on [% checkout.date_due | $KohaDates as_due_date => 1 %]")
6
        WHERE code = 'AUTO_RENEWALS';
7
    });
8
9
    NewVersion( $DBversion, 28258, "Update AUTO_RENEWAL content");
10
}

Return to bug 28258