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

(-)a/members/moremember.pl (-4 / +4 lines)
Lines 326-331 if (C4::Context->preference('EnhancedMessagingPreferences')) { Link Here
326
$template->param( $data->{'categorycode'} => 1 );
326
$template->param( $data->{'categorycode'} => 1 );
327
$template->param(
327
$template->param(
328
    patron          => $patron,
328
    patron          => $patron,
329
    borrower        => $patron, # TODO Still needed by includes,
329
    detailview      => 1,
330
    detailview      => 1,
330
    borrowernumber  => $borrowernumber,
331
    borrowernumber  => $borrowernumber,
331
    othernames      => $data->{'othernames'},
332
    othernames      => $data->{'othernames'},
Lines 336-346 $template->param( Link Here
336
    totaldue        => sprintf("%.2f", $total),
337
    totaldue        => sprintf("%.2f", $total),
337
    totaldue_raw    => $total,
338
    totaldue_raw    => $total,
338
    overdues_exist  => $overdues_exist,
339
    overdues_exist  => $overdues_exist,
339
    StaffMember     => ($category_type eq 'S'),
340
    StaffMember     => $category_type eq 'S',
340
    is_child        => ($category_type eq 'C'),
341
    is_child        => $category_type eq 'C',
341
    samebranch      => $samebranch,
342
    samebranch      => $samebranch,
342
    quickslip       => $quickslip,
343
    quickslip       => $quickslip,
343
    housebound_role => $patron->housebound_role,
344
    housebound_role => scalar $patron->housebound_role,
344
    privacy_guarantor_checkouts => $data->{'privacy_guarantor_checkouts'},
345
    privacy_guarantor_checkouts => $data->{'privacy_guarantor_checkouts'},
345
    AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
346
    AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
346
    SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
347
    SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
347
- 

Return to bug 18552