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

(-)a/members/moremember.pl (-1 / +9 lines)
Lines 199-204 if ( $patron->is_expired || $patron->is_going_to_expire ) { Link Here
199
    );
199
    );
200
}
200
}
201
201
202
# Convert line feed to html in borrowernotes and opacnote.
203
my $borrowernotes = $patron->borrowernotes;
204
$borrowernotes =~ s#\n#<br />#g;
205
$patron->borrowernotes($borrowernotes);
206
207
my $opacnote = $patron->opacnote;
208
$opacnote =~ s#\n#<br />#g;
209
$patron->opacnote($opacnote);
210
202
$template->param(
211
$template->param(
203
    patron          => $patron,
212
    patron          => $patron,
204
    issuecount      => $patron->checkouts->count,
213
    issuecount      => $patron->checkouts->count,
205
- 

Return to bug 23409