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

(-)a/opac/opac-sendshelf.pl (-1 / +1 lines)
Lines 61-67 if ( $shelf and $shelf->can_be_viewed($borrowernumber) ) { Link Here
61
        my $comment = $query->param('comment');
61
        my $comment = $query->param('comment');
62
62
63
        my $patron     = Koha::Patrons->find($borrowernumber);
63
        my $patron     = Koha::Patrons->find($borrowernumber);
64
        my $user_email = $patron->first_valid_email_address;
64
        my $user_email = $patron->notice_email_address;
65
        my $shelf      = Koha::Virtualshelves->find($shelfid);
65
        my $shelf      = Koha::Virtualshelves->find($shelfid);
66
        my $contents   = $shelf->get_contents;
66
        my $contents   = $shelf->get_contents;
67
        my $iso2709;
67
        my $iso2709;
(-)a/virtualshelves/sendshelf.pl (-2 / +1 lines)
Lines 61-67 if ($to_address) { Link Here
61
    my $comment = $query->param('comment');
61
    my $comment = $query->param('comment');
62
62
63
    my $patron     = Koha::Patrons->find($borrowernumber);
63
    my $patron     = Koha::Patrons->find($borrowernumber);
64
    my $user_email = $patron->first_valid_email_address;
64
    my $user_email = $patron->notice_email_address;
65
    my $contents   = $shelf->get_contents;
65
    my $contents   = $shelf->get_contents;
66
    my @biblionumbers;
66
    my @biblionumbers;
67
    my $iso2709;
67
    my $iso2709;
68
- 

Return to bug 33223