Bug 9978: (followup) Replace license header with the correct license (GPLv3+)
[srvgit] / rotating_collections / addItems.pl
index 10be5cb..cd24d50 100755 (executable)
@@ -2,18 +2,18 @@
 
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 #
 
 use Modern::Perl;
@@ -24,7 +24,7 @@ use C4::Context;
 use C4::RotatingCollections;
 use C4::Items;
 
-use CGI;
+use CGI qw ( -utf8 );
 
 my $query = new CGI;
 
@@ -48,13 +48,14 @@ if ( $query->param('action') eq 'addItem' ) {
 
     my ( $success, $errorCode, $errorMessage );
 
+    $template->param( barcode => $barcode );
+
     if ( !$removeItem ) {
         ( $success, $errorCode, $errorMessage ) =
           AddItemToCollection( $colId, $itemnumber );
 
         $template->param(
             previousActionAdd => 1,
-            addedBarcode      => $barcode,
         );
 
         if ($success) {
@@ -72,7 +73,6 @@ if ( $query->param('action') eq 'addItem' ) {
 
         $template->param(
             previousActionRemove => 1,
-            removedBarcode       => $barcode,
             removeChecked        => 1,
         );
 
@@ -95,11 +95,6 @@ if ($collectionItems) {
 }
 
 $template->param(
-    intranetcolorstylesheet =>
-      C4::Context->preference("intranetcolorstylesheet"),
-    intranetstylesheet => C4::Context->preference("intranetstylesheet"),
-    IntranetNav        => C4::Context->preference("IntranetNav"),
-
     colId          => $colId,
     colTitle       => $colTitle,
     colDescription => $colDescription,