@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_19817.sql | 2 ++ installer/data/mysql/userpermissions.sql | 1 + 2 files changed, 3 insertions(+) --- a/installer/data/mysql/atomicupdate/bug_19817.sql +++ a/installer/data/mysql/atomicupdate/bug_19817.sql @@ -1,2 +1,4 @@ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('KohaManualBaseURL','http://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free'); + +INSERT IGNORE INTO permissions (module_bit, code, description) VALUES (13, 'edit_help', 'Edit the local manual files'); --- a/installer/data/mysql/userpermissions.sql +++ a/installer/data/mysql/userpermissions.sql @@ -58,6 +58,7 @@ INSERT INTO permissions (module_bit, code, description) VALUES (13, 'marc_modification_templates', 'Manage marc modification templates'), (13, 'records_batchdel', 'Perform batch deletion of records (bibliographic or authority)'), (13, 'upload_general_files', 'Upload any file'), + (13, 'edit_help', 'Edit the local manual files'), (13, 'upload_manage', 'Manage uploaded files'), (15, 'check_expiration', 'Check the expiration of a serial'), (15, 'claim_serials', 'Claim missing serials'), --