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 434-439 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
434
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
434
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
435
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
435
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
436
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
436
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
437
('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo'),
437
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
438
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
438
('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'),
439
('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'),
439
('OpacCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the OPAC', 'YesNo'),
440
('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 335-340 OPAC: Link Here
335
            - ". (NOTE: For large consortia we recommend to group unavailable items by substatus, listing item counts only.)"
335
            - ". (NOTE: For large consortia we recommend to group unavailable items by substatus, listing item counts only.)"
336
336
337
    Features:
337
    Features:
338
        -
339
            - pref: OpacCatalogConcerns
340
              default: 0
341
              choices:
342
                  0: "Don't allow"
343
                  1: Allow
344
            - "OPAC users to report concerns about catalog records."
338
        -
345
        -
339
            - pref: OPACReportProblem
346
            - pref: OPACReportProblem
340
              choices:
347
              choices:
341
- 

Return to bug 31028