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 426-431 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
426
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
426
('OpacBrowser','0',NULL,'If ON, enables subject authorities browser on OPAC (needs to set misc/cronjob/sbuild_browser_and_cloud.pl)','YesNo'),
427
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
427
('OpacBrowseResults','1',NULL,'Disable/enable browsing and paging search results from the OPAC detail page.','YesNo'),
428
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
428
('OpacBrowseSearch', '0',NULL, "Elasticsearch only: add a page allowing users to 'browse' all items in the collection",'YesNo'),
429
('OpacCatalogConcerns', '0', NULL, 'Allow logged in OPAC users to report catalog concerns', 'YesNo'),
429
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
430
('OpacCloud','0',NULL,'If ON, enables subject cloud on OPAC','YesNo'),
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'),
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'),
431
('OpacCoce','0', NULL, 'If on, enables cover retrieval from the configured Coce server in the OPAC', 'YesNo'),
432
('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 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."
332
        -
339
        -
333
            - pref: OPACReportProblem
340
            - pref: OPACReportProblem
334
              choices:
341
              choices:
335
- 

Return to bug 31028