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

(-)a/installer/data/mysql/atomicupdate/bug_34188.pl (-1 / +1 lines)
Lines 13-19 return { Link Here
13
        );
13
        );
14
14
15
        # sysprefs
15
        # sysprefs
16
        say $out "Added new system preference 'ForcedLibrarySelection'";
16
        say $out "Added new system preference 'ForceLibrarySelection'";
17
17
18
    },
18
    },
19
};
19
};
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +1 lines)
Lines 139-145 Administration: Link Here
139
                  1: "Yes"
139
                  1: "Yes"
140
                  0: "No"
140
                  0: "No"
141
        -
141
        -
142
            - pref: ForcedLibrarySelection
142
            - pref: ForceLibrarySelection
143
              choices:
143
              choices:
144
                  1: "Force"
144
                  1: "Force"
145
                  0: "Don't force"
145
                  0: "Don't force"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-2 / +1 lines)
Lines 129-135 Link Here
129
                    <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option>
129
                    <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option>
130
                 [% END %]
130
                 [% END %]
131
            </select>
131
            </select>
132
            [% IF Koha.Preference('ForcedLibrarySelection') %]
132
            [% IF Koha.Preference('ForceLibrarySelection') %]
133
                <span class="required">Required</span>
133
                <span class="required">Required</span>
134
            [% END %]
134
            [% END %]
135
        </p>
135
        </p>
136
- 

Return to bug 34188