Lines 9628-9633
if ( CheckVersion($DBversion) ) {
Link Here
|
9628 |
SetVersion($DBversion); |
9628 |
SetVersion($DBversion); |
9629 |
} |
9629 |
} |
9630 |
|
9630 |
|
|
|
9631 |
$DBversion = "3.19.00.XXX"; |
9632 |
if ( CheckVersion($DBversion) ) { |
9633 |
$dbh->do(q{ |
9634 |
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type ) |
9635 |
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue: |
9636 |
|
9637 |
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item> |
9638 |
', 'print' ) |
9639 |
}); |
9640 |
print "Upgrade to $DBversion done (Bug 12933 - Add ability to print overdue slip from staff intranet)\n"; |
9641 |
SetVersion ($DBversion); |
9642 |
} |
9643 |
|
9631 |
=head1 FUNCTIONS |
9644 |
=head1 FUNCTIONS |
9632 |
|
9645 |
|
9633 |
=head2 TableExists($table) |
9646 |
=head2 TableExists($table) |
9634 |
- |
|
|