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

(-)a/installer/data/mysql/en/optional/sample_notices_message_attributes.sql (-1 lines)
Lines 3-9 insert into `message_attributes` Link Here
3
values
3
values
4
(1, 'Item DUE', 0),
4
(1, 'Item DUE', 0),
5
(2, 'Advance Notice', 1),
5
(2, 'Advance Notice', 1),
6
(3, 'Upcoming Events', 1),
7
(4, 'Hold Filled', 0),
6
(4, 'Hold Filled', 0),
8
(5, 'Item Check-in', 0),
7
(5, 'Item Check-in', 0),
9
(6, 'Item Checkout', 0);
8
(6, 'Item Checkout', 0);
(-)a/installer/data/mysql/fr-FR/2-Optionel/sample_notices_message_attributes.sql (-1 lines)
Lines 3-9 insert into `message_attributes` Link Here
3
values
3
values
4
(1, 'Item DUE', 0),
4
(1, 'Item DUE', 0),
5
(2, 'Advance Notice', 1),
5
(2, 'Advance Notice', 1),
6
(3, 'Upcoming Events', 1),
7
(4, 'Hold Filled', 0),
6
(4, 'Hold Filled', 0),
8
(5, 'Item Check-in', 0),
7
(5, 'Item Check-in', 0),
9
(6, 'Item Checkout', 0);
8
(6, 'Item Checkout', 0);
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +8 lines)
Lines 3624-3629 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
3624
    SetVersion ($DBversion);
3624
    SetVersion ($DBversion);
3625
}
3625
}
3626
3626
3627
$DBversion = 'XXX';
3628
if (C4::Context->preference('Version') < TransformToNum($DBversion)){
3629
    $dbh->do(qq{
3630
Delete from message_attributes where message_attribute_id=3;});
3631
    print "Upgrade to $DBversion done Remove upcoming events messaging option (bug 2434)";
3632
    SetVersion ($DBversion);
3633
}
3634
3627
3635
3628
=item DropAllForeignKeys($table)
3636
=item DropAllForeignKeys($table)
3629
3637
3630
- 

Return to bug 2434