|
Lines 24561-24566
if( CheckVersion( $DBversion ) ) {
Link Here
|
| 24561 |
NewVersion( $DBversion, "", "Koha 21.05.09 release" ); |
24561 |
NewVersion( $DBversion, "", "Koha 21.05.09 release" ); |
| 24562 |
} |
24562 |
} |
| 24563 |
|
24563 |
|
|
|
24564 |
$DBversion = '21.05.09.001'; |
| 24565 |
if( CheckVersion( $DBversion ) ) { |
| 24566 |
NewVersion( $DBversion, "29457", "WARNING: You may have some incorrect manager_id's recorded against account cancellation lines, please see bugzilla for details. NOTE: You may already have this bugfix applied at an earlier upgrade."); |
| 24567 |
} |
| 24568 |
|
| 24569 |
$DBversion = '21.05.09.002'; |
| 24570 |
if( CheckVersion( $DBversion ) ) { |
| 24571 |
$dbh->do(q{ |
| 24572 |
UPDATE letter |
| 24573 |
SET content=REPLACE(content, "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]\r\nThis item must be renewed at the library.\r\n[% END %]", "[% ELSIF checkout.auto_renew_error == 'too_unseen' %]\r\nThis item must be renewed at the library.\r\n[% ELSIF checkout.auto_renew_error == 'auto_account_expired' %]\r\nYour account has expired.\r\n[% END %]") |
| 24574 |
WHERE code="AUTO_RENEWALS" |
| 24575 |
}); |
| 24576 |
NewVersion( $DBversion, "29557", "Add auto_account_expired to AUTO_RENEWALS notice. Please update your AUTO_RENEWALS notice manually if you have changed or translated it." ); |
| 24577 |
} |
| 24578 |
|
| 24564 |
# SEE bug 13068 |
24579 |
# SEE bug 13068 |
| 24565 |
# if there is anything in the atomicupdate, read and execute it. |
24580 |
# if there is anything in the atomicupdate, read and execute it. |
| 24566 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
24581 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
| 24567 |
- |
|
|