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

(-)a/installer/data/mysql/atomicupdate/bug_10300.sql (+3 lines)
Line 0 Link Here
1
INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` )
2
SELECT 'IndependentBranchesTransfers', value, NULL, 'Allow non-superlibrarians to transfer items between libraries','YesNo'
3
FROM systempreferences WHERE variable = 'IndependentBranches';
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 225-230 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
225
('IncludeSeeFromInSearches','0','','Include see-from references in searches.','YesNo'),
225
('IncludeSeeFromInSearches','0','','Include see-from references in searches.','YesNo'),
226
('IndependentBranches','0',NULL,'If ON, increases security between libraries','YesNo'),
226
('IndependentBranches','0',NULL,'If ON, increases security between libraries','YesNo'),
227
('IndependentBranchesPatronModifications','0', NULL, 'Show only modification request for the logged in branch','YesNo'),
227
('IndependentBranchesPatronModifications','0', NULL, 'Show only modification request for the logged in branch','YesNo'),
228
('IndependentBranchesTransfers','0', NULL, 'Allow non-superlibrarians to transfer items between libraries','YesNo'),
228
('IntranetCatalogSearchPulldown','0', NULL, 'Show a search field pulldown for \"Search the catalog\" boxes','YesNo'),
229
('IntranetCatalogSearchPulldown','0', NULL, 'Show a search field pulldown for \"Search the catalog\" boxes','YesNo'),
229
('RecordedBooksClientSecret','','30','Client key for RecordedBooks integration','YesNo'),
230
('RecordedBooksClientSecret','','30','Client key for RecordedBooks integration','YesNo'),
230
('RecordedBooksDomain','','','RecordedBooks domain','Free'),
231
('RecordedBooksDomain','','','RecordedBooks domain','Free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +7 lines)
Lines 111-116 Administration: Link Here
111
              choices:
111
              choices:
112
                  yes: "Yes"
112
                  yes: "Yes"
113
                  no: "No"
113
                  no: "No"
114
        -
115
            - Prevent staff (but not superlibrarians) from transfering items to other libraries
116
            - pref: IndependentBranchesTransfers
117
              default: 0
118
              choices:
119
                  yes: "Yes"
120
                  no: "No"
114
    CAS authentication:
121
    CAS authentication:
115
        -
122
        -
116
            - "Use CAS for login authentication: "
123
            - "Use CAS for login authentication: "
117
- 

Return to bug 10300