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

(-)a/C4/Members/Attributes.pm (-1 / +2 lines)
Lines 271-276 sub DeleteBorrowerAttributes { Link Here
271
Delete a borrower attribute for the patron identified by C<$borrowernumber> and the attribute code of C<$attribute>
271
Delete a borrower attribute for the patron identified by C<$borrowernumber> and the attribute code of C<$attribute>
272
272
273
=cut
273
=cut
274
274
sub DeleteBorrowerAttribute {
275
sub DeleteBorrowerAttribute {
275
    my ( $borrowernumber, $attribute ) = @_;
276
    my ( $borrowernumber, $attribute ) = @_;
276
277
Lines 290-295 sub DeleteBorrowerAttribute { Link Here
290
Update a borrower attribute C<$attribute> for the patron identified by C<$borrowernumber>,
291
Update a borrower attribute C<$attribute> for the patron identified by C<$borrowernumber>,
291
292
292
=cut
293
=cut
294
293
sub UpdateBorrowerAttribute {
295
sub UpdateBorrowerAttribute {
294
    my ( $borrowernumber, $attribute ) = @_;
296
    my ( $borrowernumber, $attribute ) = @_;
295
297
296
- 

Return to bug 16504