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

(-)a/installer/data/mysql/atomicupdate/bug_19817.sql (+2 lines)
Lines 1-2 Link Here
1
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` )
1
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` )
2
VALUES ('KohaManualBaseURL','http://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free');
2
VALUES ('KohaManualBaseURL','http://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free');
3
4
INSERT IGNORE INTO permissions (module_bit, code, description) VALUES (13, 'edit_help', 'Edit the local manual files');
(-)a/installer/data/mysql/userpermissions.sql (+1 lines)
Lines 60-65 INSERT INTO permissions (module_bit, code, description) VALUES Link Here
60
   (13, 'records_batchdel', 'Perform batch deletion of records (bibliographic or authority)'),
60
   (13, 'records_batchdel', 'Perform batch deletion of records (bibliographic or authority)'),
61
   (13, 'upload_general_files', 'Upload any file'),
61
   (13, 'upload_general_files', 'Upload any file'),
62
   (13, 'upload_manage', 'Manage uploaded files'),
62
   (13, 'upload_manage', 'Manage uploaded files'),
63
   (13, 'edit_help', 'Edit the local manual files'),
63
   (15, 'check_expiration', 'Check the expiration of a serial'),
64
   (15, 'check_expiration', 'Check the expiration of a serial'),
64
   (15, 'claim_serials', 'Claim missing serials'),
65
   (15, 'claim_serials', 'Claim missing serials'),
65
   (15, 'create_subscription', 'Create a new subscription'),
66
   (15, 'create_subscription', 'Create a new subscription'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc (-1 / +1 lines)
Lines 107-112 Link Here
107
    [%- CASE 'delete_public_lists' -%]<span>Delete public lists</span>
107
    [%- CASE 'delete_public_lists' -%]<span>Delete public lists</span>
108
    [%- CASE 'upload_general_files' -%]<span>Upload any file</span>
108
    [%- CASE 'upload_general_files' -%]<span>Upload any file</span>
109
    [%- CASE 'upload_manage' -%]<span>Manage uploaded files (<i>Useless without upload_general_files</i>)</span>
109
    [%- CASE 'upload_manage' -%]<span>Manage uploaded files (<i>Useless without upload_general_files</i>)</span>
110
    [%- CASE 'edit_help' -%]<span>Edit the local manual files</span>
110
    [%- CASE 'edit_clubs' -%]<span>Create and edit clubs</span>
111
    [%- CASE 'edit_clubs' -%]<span>Create and edit clubs</span>
111
    [%- CASE 'edit_templates' -%]<span>Create and edit club templates</span>
112
    [%- CASE 'edit_templates' -%]<span>Create and edit club templates</span>
112
    [%- CASE 'enroll' -%]<span>Enroll patrons in clubs</span>
113
    [%- CASE 'enroll' -%]<span>Enroll patrons in clubs</span>
113
- 

Return to bug 19817