Lines 823-829
if (C4::Context->preference('EnhancedMessagingPreferences')) {
Link Here
|
823 |
|
823 |
|
824 |
$template->param( borrower_data => \%data ); |
824 |
$template->param( borrower_data => \%data ); |
825 |
$template->param( "show_guarantor" => $categorycode ? Koha::Patron::Categories->find($categorycode)->canbeguarantee : 1); # associate with step to know where you are |
825 |
$template->param( "show_guarantor" => $categorycode ? Koha::Patron::Categories->find($categorycode)->canbeguarantee : 1); # associate with step to know where you are |
826 |
$debug and warn "memberentry step: $step"; |
826 |
my $debug and warn "memberentry step: $step"; |
827 |
$template->param( "step_$step" => 1) if $step; # associate with step to know where u are |
827 |
$template->param( "step_$step" => 1) if $step; # associate with step to know where u are |
828 |
$template->param( step => $step ) if $step; # associate with step to know where u are |
828 |
$template->param( step => $step ) if $step; # associate with step to know where u are |
829 |
|
829 |
|
830 |
- |
|
|