From c67894b9eaec69dfba829e77422d180c5adeec14 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 9 Oct 2018 14:11:28 -0300 Subject: [PATCH] Bug 11897: Add mising semi-colon to user*.sql --- installer/data/mysql/userflags.sql | 2 +- installer/data/mysql/userpermissions.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/userflags.sql b/installer/data/mysql/userflags.sql index a962fabd6b..68235994c5 100644 --- a/installer/data/mysql/userflags.sql +++ b/installer/data/mysql/userflags.sql @@ -19,6 +19,6 @@ INSERT INTO userflags (bit, flag, flagdesc, defaulton) VALUES (20, 'lists', 'Lists', 0), (21, 'clubs', 'Patron clubs', '0'), (22,'ill','The Interlibrary Loans Module',0), -(23,'self_check','Self check modules',0) +(23,'self_check','Self check modules',0), (24, 'stockrotation', 'Manage stockrotation operations', 0) ; diff --git a/installer/data/mysql/userpermissions.sql b/installer/data/mysql/userpermissions.sql index 9f1accdb26..9245615629 100644 --- a/installer/data/mysql/userpermissions.sql +++ b/installer/data/mysql/userpermissions.sql @@ -89,7 +89,7 @@ INSERT INTO permissions (module_bit, code, description) VALUES (21, 'edit_clubs', 'Create and update clubs'), (21, 'enroll', 'Enroll patrons in clubs'), (23, 'self_checkin_module', 'Log into the self check-in module'), - (23, 'self_checkout_module', 'Perform self checkout at the OPAC. It should be used for the patron matching the AutoSelfCheckID') + (23, 'self_checkout_module', 'Perform self checkout at the OPAC. It should be used for the patron matching the AutoSelfCheckID'), (24, 'manage_rotas', 'Create, edit and delete rotas'), (24, 'manage_rota_items', 'Add and remove items from rotas') ; -- 2.11.0