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

(-)a/Koha/Illrequest.pm (-6 / +3 lines)
Lines 1651-1661 sub get_notice { Link Here
1651
    }
1651
    }
1652
    my $metastring = join("\n", @metaarray);
1652
    my $metastring = join("\n", @metaarray);
1653
1653
1654
    my $illrequestattributes = {};
1654
    my $illrequestattributes = {
1655
    my $attributes = $self->illrequestattributes;
1655
        map { $_->type => $_->value } $self->illrequestattributes->as_list
1656
    while ( my $attribute = $attributes->next ) {
1656
    };
1657
        $illrequestattributes->{$attribute->type} = $attribute->value;
1658
    }
1659
1657
1660
    my $letter = C4::Letters::GetPreparedLetter(
1658
    my $letter = C4::Letters::GetPreparedLetter(
1661
        module                 => 'ill',
1659
        module                 => 'ill',
1662
- 

Return to bug 32548