Bug 14330: Remove unused email_sender from sendbasket/sendshelf
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Thu, 4 Jun 2015 10:47:13 +0000 (12:47 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 8 Jun 2015 13:38:08 +0000 (10:38 -0300)
The sendbasket/sendshelf scripts and templates do not use email_sender
as a cgi parameter or as a template var. Probably a leftover from previous
changes.
Let's make Koha cleaner :)

Test plan:
[1] Send your cart from opac or staff.
[2] Send a shelf from opac or staff.
[3] Git grep email_sender. No results.

Followed test plan. Works as expected.
Signed-off-by: Marc VĂ©ron <veron@veron.ch>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>

basket/sendbasket.pl
opac/opac-sendbasket.pl
opac/opac-sendshelf.pl
virtualshelves/sendshelf.pl

index 1dd7661..83dab55 100755 (executable)
@@ -46,7 +46,6 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
 
 my $bib_list     = $query->param('bib_list');
 my $email_add    = $query->param('email_add');
-my $email_sender = $query->param('email_sender');
 
 my $dbh          = C4::Context->dbh;
 
@@ -101,7 +100,6 @@ if ( $email_add ) {
     my $resultsarray = \@results;
     $template2->param(
         BIBLIO_RESULTS => $resultsarray,
-        email_sender   => $email_sender,
         comment        => $comment
     );
 
index 82e7d76..6b2d62f 100755 (executable)
@@ -48,7 +48,6 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
 
 my $bib_list     = $query->param('bib_list');
 my $email_add    = $query->param('email_add');
-my $email_sender = $query->param('email_sender');
 
 my $dbh          = C4::Context->dbh;
 
@@ -115,7 +114,6 @@ if ( $email_add ) {
     
     $template2->param(
         BIBLIO_RESULTS => $resultsarray,
-        email_sender   => $email_sender,
         comment        => $comment,
         firstname      => $user->{firstname},
         surname        => $user->{surname},
index f6ce844..8512c65 100755 (executable)
@@ -109,7 +109,6 @@ if ( $email ) {
 
     $template2->param(
         BIBLIO_RESULTS => \@results,
-        email_sender   => $mail{'from'},
         comment        => $comment,
         shelfname      => $shelf[1],
         firstname      => $user->{firstname},
index b2941e3..16e2ff6 100755 (executable)
@@ -103,7 +103,6 @@ if ($email) {
 
     $template2->param(
         BIBLIO_RESULTS => \@results,
-        email_sender   => $mail{'from'},
         comment        => $comment,
         shelfname      => $shelf[1],
     );