From 8703f279c0b7bff3ca7723d69402d622890e0aae Mon Sep 17 00:00:00 2001
From: Nick Clemens <nick@bywatersolutions.com>
Date: Wed, 25 May 2022 14:02:57 +0000
Subject: [PATCH] Bug 30847: Remove unused OPACShowHoldQueueDetails

Search for the variables, they aren't used!
---
 opac/opac-reserve.pl | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl
index 7cf05b78eb..c3fd0ff6e2 100755
--- a/opac/opac-reserve.pl
+++ b/opac/opac-reserve.pl
@@ -61,12 +61,6 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
     }
 );
 
-my ($show_holds_count, $show_priority);
-for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
-    m/holds/o and $show_holds_count = 1;
-    m/priority/ and $show_priority = 1;
-}
-
 my $patron = Koha::Patrons->find( $borrowernumber, { prefetch => ['categorycode'] } );
 my $category = $patron->category;
 
-- 
2.30.2