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

(-)a/circ/circulation.pl (-1 / +2 lines)
Lines 431-437 if (@$barcodes) { Link Here
431
  } else {
431
  } else {
432
    my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
432
    my $confirmation_needed = grep { $_->{NEEDSCONFIRMATION} } @$checkout_infos;
433
    $template->param(
433
    $template->param(
434
        checkout_infos => $checkout_infos,
434
        checkout_infos      => $checkout_infos,
435
        onsite_checkout     => $onsite_checkout,
435
        confirmation_needed => $confirmation_needed,
436
        confirmation_needed => $confirmation_needed,
436
    );
437
    );
437
  }
438
  }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-1 / +1 lines)
Lines 323-328 Link Here
323
      <input type="hidden" name="branch" value="[% branch | html %]" />
323
      <input type="hidden" name="branch" value="[% branch | html %]" />
324
      <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
324
      <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
325
      <input type="hidden" name="batch" value="1" />
325
      <input type="hidden" name="batch" value="1" />
326
      <input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" />
326
      <input type="submit" id="checkoutrenew" class="btn btn-primary" value="Checkout or renew" />
327
      <input type="submit" id="checkoutrenew" class="btn btn-primary" value="Checkout or renew" />
327
        </fieldset>
328
        </fieldset>
328
    </form>
329
    </form>
329
- 

Return to bug 28805