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

(-)a/installer/data/mysql/en/mandatory/userpermissions.sql (-1 / +1 lines)
Lines 25-31 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
25
   (11, 'order_manage_all', 'Manage all orders and baskets, regardless of restrictions on them'),
25
   (11, 'order_manage_all', 'Manage all orders and baskets, regardless of restrictions on them'),
26
   (11, 'group_manage', 'Manage orders & basketgroups'),
26
   (11, 'group_manage', 'Manage orders & basketgroups'),
27
   (11, 'order_receive', 'Manage orders & basket'),
27
   (11, 'order_receive', 'Manage orders & basket'),
28
   (11, 'budget_add_del', 'Add and delete budgets (but cant modify budgets)'),
28
   (11, 'budget_add_del', 'Add and delete budgets (but can''t modify budgets)'),
29
   (11, 'budget_manage_all', 'Manage all budgets'),
29
   (11, 'budget_manage_all', 'Manage all budgets'),
30
   (13, 'edit_news', 'Write news for the OPAC and staff interfaces'),
30
   (13, 'edit_news', 'Write news for the OPAC and staff interfaces'),
31
   (13, 'label_creator', 'Create printable labels and barcodes from catalog and patron data'),
31
   (13, 'label_creator', 'Create printable labels and barcodes from catalog and patron data'),
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +10 lines)
Lines 9522-9528 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
9522
$DBversion = "3.17.00.057";
9522
$DBversion = "3.17.00.057";
9523
if ( CheckVersion($DBversion) ) {
9523
if ( CheckVersion($DBversion) ) {
9524
    print "Upgrade to $DBversion done (Koha 3.18 beta)\n";
9524
    print "Upgrade to $DBversion done (Koha 3.18 beta)\n";
9525
    SetVersion($DBversion);
9525
   SetVersion ($DBversion);
9526
}
9527
9528
$DBversion = "3.17.00.XXX";
9529
if ( CheckVersion($DBversion) ) {
9530
    $dbh->do(q{
9531
        UPDATE permissions SET description = "Add and delete budgets (but can't modifiy budgets)" WHERE description = "Add and delete budgets (but cant modify budgets)";
9532
    });
9533
   print "Upgrade to $DBversion done (Bug 10749: Fix typo in budget_add_del permission description)\n";
9534
   SetVersion ($DBversion);
9526
}
9535
}
9527
9536
9528
=head1 FUNCTIONS
9537
=head1 FUNCTIONS
9529
- 

Return to bug 10749