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

(-)a/installer/data/mysql/atomicupdate/bug_31028.pl (+14 lines)
Lines 26-30 return { Link Here
26
26
27
            say $out "Added new table 'catalog_concerns'";
27
            say $out "Added new table 'catalog_concerns'";
28
        }
28
        }
29
30
        $dbh->do(
31
            q{
32
                INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
33
	            ('CatalogConcerns', '0', NULL, 'Allow users to report catalog concerns', 'YesNo')
34
	        }
35
        );
36
37
        $dbh->do(
38
            q{
39
                INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
40
	            ('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo')
41
	        }
42
        );
29
    },
43
    },
30
}
44
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+2 lines)
Lines 128-133 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
128
('casLogout','0','','Does a logout from Koha should also log the user out of CAS?','YesNo'),
128
('casLogout','0','','Does a logout from Koha should also log the user out of CAS?','YesNo'),
129
('casServerUrl','https://localhost:8443/cas','','URL of the cas server','Free'),
129
('casServerUrl','https://localhost:8443/cas','','URL of the cas server','Free'),
130
('casServerVersion','2', '2|3','Version of the CAS server Koha will connect to.','Choice'),
130
('casServerVersion','2', '2|3','Version of the CAS server Koha will connect to.','Choice'),
131
('CatalogConcerns', '0', NULL, 'Allow users to report catalog concerns', 'YesNo'),
131
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
132
('CatalogModuleRelink','0',NULL,'If OFF the linker will never replace the authids that are set in the cataloging module.','YesNo'),
132
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
133
('CataloguingLog','1',NULL,'If ON, log edit/create/delete actions on bibliographic data. WARNING: this feature is very resource consuming.','YesNo'),
133
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
134
('ChargeFinesOnClosedDays','0',NULL,'Charge fines on days the library is closed.','YesNo'),
Lines 424-429 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
424
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
425
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
425
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
426
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
426
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
427
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
428
('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo'),
427
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
429
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
428
('OpacAdditionalStylesheet','','','Define an auxiliary stylesheet for OPAC use, to override specified settings from the primary opac.css stylesheet. Enter the filename (if the file is in the server\'s css directory) or a complete URL beginning with http (if the file lives on a remote server).','free'),
430
('OpacAdditionalStylesheet','','','Define an auxiliary stylesheet for OPAC use, to override specified settings from the primary opac.css stylesheet. Enter the filename (if the file is in the server\'s css directory) or a complete URL beginning with http (if the file lives on a remote server).','free'),
429
('OpacCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the OPAC', 'YesNo'),
431
('OpacCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the OPAC', 'YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref (+8 lines)
Lines 42-47 Cataloging: Link Here
42
                  1: "Allow"
42
                  1: "Allow"
43
                  0: "Don't allow"
43
                  0: "Don't allow"
44
            - authorized values to be created within the cataloguing module. Librarian will need the manage_auth_values subpermission.
44
            - authorized values to be created within the cataloguing module. Librarian will need the manage_auth_values subpermission.
45
        -
46
            - pref: CatalogConcerns
47
              default: 0
48
              choices:
49
                  0: "Don't allow"
50
                  1: Allow
51
            - "staff to report concerns about catalog records."
52
            - '<strong>Note:</strong> You can also enable `OpacCatalogConcerns` to allow OPAC users the same option.'
45
53
46
    Spine labels:
54
    Spine labels:
47
        -
55
        -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-1 / +8 lines)
Lines 329-334 OPAC: Link Here
329
            - ". (NOTE: For large consortia we recommend to group unavailable items by substatus, listing item counts only.)"
329
            - ". (NOTE: For large consortia we recommend to group unavailable items by substatus, listing item counts only.)"
330
330
331
    Features:
331
    Features:
332
        -
333
            - pref: OpacCatalogConcerns
334
              default: 0
335
              choices:
336
                  0: "Don't allow"
337
                  1: Allow
338
            - "OPAC users to report concerns about catalog records."
339
            - '<strong>Note:</strong> Enabling `CatalogConcerns` is required for this feature to be accessible on the staff client.'
332
        -
340
        -
333
            - pref: OPACReportProblem
341
            - pref: OPACReportProblem
334
              choices:
342
              choices:
335
- 

Return to bug 31028