Bug 10853: All existing routing to get a CSV should return a MARC csv
[koha.git] / opac / opac-modrequest.pl
index 01b45f1..7ec11eb 100755 (executable)
 # 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, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 use strict;
+use warnings;
+
 use CGI;
 use C4::Output;
 use C4::Reserves;
 use C4::Auth;
 my $query = new CGI;
+
 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
     {   
         template_name   => "opac-account.tmpl",
@@ -39,8 +42,10 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
     }
 );
 
-my $biblionumber = $query->param('biblionumber');
-if ($biblionumber and $borrowernumber) {
-       CancelReserve($biblionumber, '', $borrowernumber);
+my $reserve_id = $query->param('reserve_id');
+
+if ($reserve_id && $borrowernumber) {
+  CancelReserve({ reserve_id => $reserve_id });
 }
+
 print $query->redirect("/cgi-bin/koha/opac-user.pl#opac-user-holds");