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

(-)a/installer/data/mysql/en/mandatory/userpermissions.sql (-1 / +1 lines)
Lines 23-29 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
23
   (11, 'order_manage_all', 'Manage all orders and baskets, regardless of restrictions on them'),
23
   (11, 'order_manage_all', 'Manage all orders and baskets, regardless of restrictions on them'),
24
   (11, 'group_manage', 'Manage orders & basketgroups'),
24
   (11, 'group_manage', 'Manage orders & basketgroups'),
25
   (11, 'order_receive', 'Manage orders & basket'),
25
   (11, 'order_receive', 'Manage orders & basket'),
26
   (11, 'budget_add_del', 'Add and delete budgets (but cant modify budgets)'),
26
   (11, 'budget_add_del', 'Add and delete budgets (but can''t modify budgets)'),
27
   (11, 'budget_manage_all', 'Manage all budgets'),
27
   (11, 'budget_manage_all', 'Manage all budgets'),
28
   (13, 'edit_news', 'Write news for the OPAC and staff interfaces'),
28
   (13, 'edit_news', 'Write news for the OPAC and staff interfaces'),
29
   (13, 'label_creator', 'Create printable labels and barcodes from catalog and patron data'),
29
   (13, 'label_creator', 'Create printable labels and barcodes from catalog and patron data'),
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +10 lines)
Lines 9438-9443 if ( CheckVersion($DBversion) ) { Link Here
9438
   SetVersion ($DBversion);
9438
   SetVersion ($DBversion);
9439
}
9439
}
9440
9440
9441
9442
$DBversion = "3.17.00.XXX";
9443
if ( CheckVersion($DBversion) ) {
9444
    $dbh->do(q{
9445
        UPDATE permissions SET description = "Add and delete budgets (but can't modifiy budgets)" WHERE description = "Add and delete budgets (but cant modify budgets)";
9446
    });
9447
   print "Upgrade to $DBversion done (Bug 10749: Fix typo in budget_add_del permission description)\n";
9448
   SetVersion ($DBversion);
9449
}
9450
9441
=head1 FUNCTIONS
9451
=head1 FUNCTIONS
9442
9452
9443
=head2 TableExists($table)
9453
=head2 TableExists($table)
9444
- 

Return to bug 10749