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

(-)a/members/boraccount.pl (-1 lines)
Lines 106-112 if (C4::Context->preference('ExtendedPatronAttributes')) { Link Here
106
106
107
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
107
my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
108
108
109
#workaround for Bug 4041 to get rid of duplicated code in circ-menu.tt, use circ-menu.inc instad
110
$template->param(%$data);
109
$template->param(%$data);
111
110
112
$template->param(
111
$template->param(
(-)a/members/pay.pl (-1 lines)
Lines 134-140 sub add_accounts_to_template { Link Here
134
    }
134
    }
135
    borrower_add_additional_fields($borrower);
135
    borrower_add_additional_fields($borrower);
136
136
137
    #workaround for Bug 4041 to get rid of duplicated code in circ-menu.tt, use circ-menu.inc instad
138
    $template->param(%$borrower);
137
    $template->param(%$borrower);
139
138
140
    $template->param(
139
    $template->param(
(-)a/members/paycollect.pl (-3 lines)
Lines 143-152 if ( $total_paid and $total_paid ne '0.00' ) { Link Here
143
143
144
borrower_add_additional_fields($borrower);
144
borrower_add_additional_fields($borrower);
145
145
146
#workaround for Bug 4041 to get rid of duplicated code in circ-menu.tt, use circ-menu.inc instad
147
$template->param(%$borrower);
146
$template->param(%$borrower);
148
147
149
150
$template->param(
148
$template->param(
151
    borrowernumber => $borrowernumber,    # some templates require global
149
    borrowernumber => $borrowernumber,    # some templates require global
152
    borrower      => $borrower,
150
    borrower      => $borrower,
153
- 

Return to bug 11804