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 ( CheckVersion($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
}
9526
}
9527
9527
9528
$DBversion = "3.17.00.058";
9528
$DBversion = "3.17.00.058";
Lines 9534-9539 if( CheckVersion($DBversion) ){ Link Here
9534
    SetVersion($DBversion);
9534
    SetVersion($DBversion);
9535
}
9535
}
9536
9536
9537
$DBversion = "3.17.00.XXX";
9538
if ( CheckVersion($DBversion) ) {
9539
    $dbh->do(q{
9540
        UPDATE permissions SET description = "Add and delete budgets (but can't modifiy budgets)" WHERE description = "Add and delete budgets (but cant modify budgets)";
9541
    });
9542
    print "Upgrade to $DBversion done (Bug 10749: Fix typo in budget_add_del permission description)\n";
9543
    SetVersion ($DBversion);
9544
}
9545
9537
=head1 FUNCTIONS
9546
=head1 FUNCTIONS
9538
9547
9539
=head2 TableExists($table)
9548
=head2 TableExists($table)
9540
- 

Return to bug 10749