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

(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 97-103 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
97
('DisplayClearScreenButton','0','','If set to ON, a clear screen button will appear on the circulation page.','YesNo'),
97
('DisplayClearScreenButton','0','','If set to ON, a clear screen button will appear on the circulation page.','YesNo'),
98
('displayFacetCount','0',NULL,NULL,'YesNo'),
98
('displayFacetCount','0',NULL,NULL,'YesNo'),
99
('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'),
99
('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'),
100
('DisplayLibraryFacets',  'holdingbranch',  'home|holding|both',  'Defines which library facets to display.',  'Choice'),
100
('DisplayLibraryFacets',  'holding',  'home|holding|both',  'Defines which library facets to display.',  'Choice'),
101
('DisplayMultiPlaceHold','1','','Display the ability to place multiple holds or not','YesNo'),
101
('DisplayMultiPlaceHold','1','','Display the ability to place multiple holds or not','YesNo'),
102
('DisplayOPACiconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages in the OPAC.','YesNo'),
102
('DisplayOPACiconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages in the OPAC.','YesNo'),
103
('dontmerge','1',NULL,'If ON, modifying an authority record will not update all associated bibliographic records immediately, ask your system administrator to enable the merge_authorities.pl cron job','YesNo'),
103
('dontmerge','1',NULL,'If ON, modifying an authority record will not update all associated bibliographic records immediately, ask your system administrator to enable the merge_authorities.pl cron job','YesNo'),
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 7923-7929 if ( CheckVersion($DBversion) ) { Link Here
7923
            type
7923
            type
7924
            )
7924
            )
7925
        VALUES (
7925
        VALUES (
7926
            'DisplayLibraryFacets',  'holdingbranch',  'home|holding|both',  'Defines which library facets to display.',  'Choice'
7926
            'DisplayLibraryFacets',  'holding',  'home|holding|both',  'Defines which library facets to display.',  'Choice'
7927
        );
7927
        );
7928
    });
7928
    });
7929
    print "Upgrade to $DBversion done (Bug 11334 - Add facet for home library)\n";
7929
    print "Upgrade to $DBversion done (Bug 11334 - Add facet for home library)\n";
7930
- 

Return to bug 11334