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

(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 207-212 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
207
('DefaultToLoggedInLibraryNoticesSlips',  '0', NULL ,  'If enabled,slips and notices editor will default to the logged in library''s rules, rather than the ''all libraries'' rules.',  'YesNo'),
207
('DefaultToLoggedInLibraryNoticesSlips',  '0', NULL ,  'If enabled,slips and notices editor will default to the logged in library''s rules, rather than the ''all libraries'' rules.',  'YesNo'),
208
('DefaultToLoggedInLibraryOverdueTriggers',  '0', NULL ,  'If enabled, overdue status triggers editor will default to the logged in library''s rules, rather than the ''default'' rules.',  'YesNo'),
208
('DefaultToLoggedInLibraryOverdueTriggers',  '0', NULL ,  'If enabled, overdue status triggers editor will default to the logged in library''s rules, rather than the ''default'' rules.',  'YesNo'),
209
('Display856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding staff interface XSLT option must be on','Choice'),
209
('Display856uAsImage','OFF','OFF|Details|Results|Both','Display the URI in the 856u field as an image, the corresponding staff interface XSLT option must be on','Choice'),
210
('DisplayAddHoldGroups','1','','Display the ability to create hold groups which are fulfilled by one item','YesNo'),
210
('DisplayClearScreenButton','no','no|issueslip|issueqslip','If set to ON, a clear screen button will appear on the circulation page.','Choice'),
211
('DisplayClearScreenButton','no','no|issueslip|issueqslip','If set to ON, a clear screen button will appear on the circulation page.','Choice'),
211
('displayFacetCount','0',NULL,NULL,'YesNo'),
212
('displayFacetCount','0',NULL,NULL,'YesNo'),
212
('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'),
213
('DisplayIconsXSLT','1','','If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (+6 lines)
Lines 867-872 Circulation: Link Here
867
                  1: Enable
867
                  1: Enable
868
                  0:  "Don't enable"
868
                  0:  "Don't enable"
869
            - "the ability to place holds on multiple bibliographic records from the search results"
869
            - "the ability to place holds on multiple bibliographic records from the search results"
870
        -
871
            - pref: DisplayAddHoldGroups
872
              choices:
873
                  1: Enable
874
                  0: "Don't enable"
875
            - "the ability to create hold groups which are fulfilled by one item"
870
        -
876
        -
871
            - pref: TransferWhenCancelAllWaitingHolds
877
            - pref: TransferWhenCancelAllWaitingHolds
872
              choices:
878
              choices:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-1 / +1 lines)
Lines 617-623 Link Here
617
                                <input name="non_priority" id="non_priority" type="checkbox" />
617
                                <input name="non_priority" id="non_priority" type="checkbox" />
618
                                <span class="hint">A non priority hold doesn't prevent a current checkout from renewing</span>
618
                                <span class="hint">A non priority hold doesn't prevent a current checkout from renewing</span>
619
                            </li>
619
                            </li>
620
                            [% IF ( multi_hold ) %]
620
                            [% IF ( Koha.Preference('DisplayAddHoldGroups') && ( multi_hold ) ) %]
621
                            <li id="hold_group_list_item">
621
                            <li id="hold_group_list_item">
622
                                <label for="hold_group">Treat as hold group: </label>
622
                                <label for="hold_group">Treat as hold group: </label>
623
                                <input name="hold_group" id="hold_group" type="checkbox" />
623
                                <input name="hold_group" id="hold_group" type="checkbox" />
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +1 lines)
Lines 145-151 Link Here
145
145
146
            <form action="/cgi-bin/koha/opac-reserve.pl" method="post" id="hold-request-form">
146
            <form action="/cgi-bin/koha/opac-reserve.pl" method="post" id="hold-request-form">
147
                <legend class="sr-only">Hold requests</legend>
147
                <legend class="sr-only">Hold requests</legend>
148
                [% IF ( multi_hold ) %]
148
                [% IF ( Koha.Preference('DisplayAddHoldGroups') && ( multi_hold ) ) %]
149
                <div id="hold_group">
149
                <div id="hold_group">
150
                    <fieldset class="rows">
150
                    <fieldset class="rows">
151
                        <ul>
151
                        <ul>
152
- 

Return to bug 15516