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

(-)a/circ/circulation.pl (-2 / +2 lines)
Lines 644-651 $template->param( Link Here
644
    printername       => $printer,
644
    printername       => $printer,
645
    firstname         => $borrower->{'firstname'},
645
    firstname         => $borrower->{'firstname'},
646
    surname           => $borrower->{'surname'},
646
    surname           => $borrower->{'surname'},
647
    dateexpiry        => format_date($newexpiry),
647
    newexpiry         => format_date($newexpiry),
648
    expiry            => format_date($borrower->{'dateexpiry'}),
648
    expiry            => format_date($borrower->{'newexpiry'}),
649
    categorycode      => $borrower->{'categorycode'},
649
    categorycode      => $borrower->{'categorycode'},
650
    categoryname      => $borrower->{description},
650
    categoryname      => $borrower->{description},
651
    address           => $address,
651
    address           => $address,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +1 lines)
Lines 225-231 function refocus(calendar) { Link Here
225
</form>
225
</form>
226
</div>
226
</div>
227
227
228
[% IF ( dateexpiry ) %]<div class="dialog message">Patron's account has been renewed until [% dateexpiry %]</div>[% END %]
228
[% IF ( newexpiry ) %]<div class="dialog message">Patron's account has been renewed until [% newexpiry %]</div>[% END %]
229
[% IF ( NEEDSCONFIRMATION ) %]
229
[% IF ( NEEDSCONFIRMATION ) %]
230
<div class="yui-g">
230
<div class="yui-g">
231
231
232
- 

Return to bug 6671