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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt (-3 / +3 lines)
Lines 60-70 Link Here
60
60
61
    [% IF updated_exclude_from_local_holds_priority.defined %]
61
    [% IF updated_exclude_from_local_holds_priority.defined %]
62
    <div class="dialog message">
62
    <div class="dialog message">
63
        <i>Exclude from local holds priority</i> updated to
63
        <em>Exclude from local holds priority</em> updated to
64
        [% IF updated_exclude_from_local_holds_priority %]
64
        [% IF updated_exclude_from_local_holds_priority %]
65
            <i>Yes</i>
65
            <em>Yes</em>
66
        [% ELSE %]
66
        [% ELSE %]
67
            <i>No</i>
67
            <em>No</em>
68
        [% END %]
68
        [% END %]
69
    </div>
69
    </div>
70
    [% END %]
70
    [% END %]
(-)a/tools/batchMod.pl (-2 / +1 lines)
Lines 242-248 if ($op eq "action") { Link Here
242
                        else {
242
                        else {
243
                            my $modified_holds_priority = 0;
243
                            my $modified_holds_priority = 0;
244
                            if (defined $exclude_from_local_holds_priority) {
244
                            if (defined $exclude_from_local_holds_priority) {
245
                                if($item->exclude_from_local_holds_priority != $exclude_from_local_holds_priority) {
245
                                if(!defined $item->exclude_from_local_holds_priority || $item->exclude_from_local_holds_priority != $exclude_from_local_holds_priority) {
246
                                $item->exclude_from_local_holds_priority($exclude_from_local_holds_priority)->store;
246
                                $item->exclude_from_local_holds_priority($exclude_from_local_holds_priority)->store;
247
                                $modified_holds_priority = 1;
247
                                $modified_holds_priority = 1;
248
                            }
248
                            }
249
- 

Return to bug 19889