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

(-)a/installer/data/mysql/de-DE/mandatory/sample_notices.sql (+6 lines)
Lines 131-133 Wir möchten Sie darüber informieren, dass der Benutzer <<borrowers.firstname>> Link Here
131
Vielen Dank,
131
Vielen Dank,
132
Ihr Biblioheksteam'
132
Ihr Biblioheksteam'
133
);
133
);
134
135
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
136
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
137
138
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
139
', 'print' );
(-)a/installer/data/mysql/en/mandatory/sample_notices.sql (+5 lines)
Lines 142-144 Thank you. Link Here
142
142
143
Your library.'
143
Your library.'
144
);
144
);
145
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
146
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
147
148
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
149
', 'print' );
(-)a/installer/data/mysql/fr-FR/1-Obligatoire/sample_notices.sql (+5 lines)
Lines 145-147 Thank you. Link Here
145
145
146
Your library.'
146
Your library.'
147
);
147
);
148
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
149
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
150
151
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
152
', 'print' );
(-)a/installer/data/mysql/nb-NO/1-Obligatorisk/sample_notices.sql (+5 lines)
Lines 163-165 Thank you. Link Here
163
163
164
Your library.'
164
Your library.'
165
);
165
);
166
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
167
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
168
169
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
170
', 'print' );
(-)a/installer/data/mysql/pl-PL/mandatory/sample_notices.sql (+5 lines)
Lines 145-147 Thank you. Link Here
145
145
146
Your library.'
146
Your library.'
147
);
147
);
148
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
149
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
150
151
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
152
', 'print' );
(-)a/installer/data/mysql/ru-RU/mandatory/sample_notices.sql (+5 lines)
Lines 145-147 Thank you. Link Here
145
145
146
Your library.'
146
Your library.'
147
);
147
);
148
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
149
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
150
151
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
152
', 'print' );
(-)a/installer/data/mysql/uk-UA/mandatory/sample_notices.sql (+5 lines)
Lines 144-146 Thank you. Link Here
144
144
145
Your library.'
145
Your library.'
146
);
146
);
147
INSERT INTO letter ( module, code, branchcode, name, is_html, title, content, message_transport_type )
148
VALUES ( 'circulation', 'OVERDUES_SLIP', '', 'Overdues Slip', '0', 'OVERDUES_SLIP', 'The following item(s) is/are currently overdue:
149
150
<item>"<<biblio.title>>" by <<biblio.author>>, <<items.itemcallnumber>>, Barcode: <<items.barcode>> Fine: <<items.fine>></item>
151
', 'print' );
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +13 lines)
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
- 

Return to bug 12933