|
Lines 9666-9671
if ( CheckVersion($DBversion) ) {
Link Here
|
| 9666 |
$dbh->do(q|SET foreign_key_checks = 1|);; |
9666 |
$dbh->do(q|SET foreign_key_checks = 1|);; |
| 9667 |
|
9667 |
|
| 9668 |
print "Upgrade to $DBversion done (Bug 11944 - Convert DB tables to utf8_unicode_ci)\n"; |
9668 |
print "Upgrade to $DBversion done (Bug 11944 - Convert DB tables to utf8_unicode_ci)\n"; |
|
|
9669 |
SetVersion($DBversion); |
| 9670 |
} |
| 9671 |
|
| 9672 |
$DBversion = "3.19.00.XXX"; |
| 9673 |
if ( CheckVersion($DBversion) ) { |
| 9674 |
$dbh->do(q{ |
| 9675 |
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type ) |
| 9676 |
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue: |
| 9677 |
|
| 9678 |
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item> |
| 9679 |
', 'print' ) |
| 9680 |
}); |
| 9681 |
print "Upgrade to $DBversion done (Bug 12933 - Add ability to print overdue slip from staff intranet)\n"; |
| 9669 |
SetVersion ($DBversion); |
9682 |
SetVersion ($DBversion); |
| 9670 |
} |
9683 |
} |
| 9671 |
|
9684 |
|
| 9672 |
- |
|
|