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

(-)a/installer/data/mysql/atomicupdate/bug_31028.pl (+8 lines)
Lines 44-48 return { Link Here
44
44
45
            say $out "Added new table 'ticket_updates'";
45
            say $out "Added new table 'ticket_updates'";
46
        }
46
        }
47
48
        $dbh->do(
49
            q{
50
                INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
51
	            ('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo')
52
	        }
53
        );
54
        say $out "`OpacCatalogConcerns` preference added";
47
    }
55
    }
48
}
56
}
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 427-432 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
427
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
427
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
428
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
428
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
429
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
429
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
430
('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo'),
430
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
431
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
431
('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'),
432
('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'),
432
('OpacCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the OPAC', 'YesNo'),
433
('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/opac.pref (-1 / +7 lines)
Lines 334-339 OPAC: Link Here
334
            - ". (NOTE: For large consortia we recommend to group unavailable items by substatus, listing item counts only.)"
334
            - ". (NOTE: For large consortia we recommend to group unavailable items by substatus, listing item counts only.)"
335
335
336
    Features:
336
    Features:
337
        -
338
            - pref: OpacCatalogConcerns
339
              default: 0
340
              choices:
341
                  0: "Don't allow"
342
                  1: Allow
343
            - "OPAC users to report concerns about catalog records."
337
        -
344
        -
338
            - pref: OPACReportProblem
345
            - pref: OPACReportProblem
339
              choices:
346
              choices:
340
- 

Return to bug 31028