From 7d6eddf1ec3cc375468e9bc977190db9f998c0df Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Tue, 29 Jul 2008 11:42:48 -0500 Subject: [PATCH] Bug 1953 [4/6]: removing dead code from C4::Koha::displayServers displayServers appears to have had old code in it that was no longer used. I'm removing it. Signed-off-by: Galen Charlton Signed-off-by: Joshua Ferraro --- C4/Koha.pm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/C4/Koha.pm b/C4/Koha.pm index b5f6f911bc..1c07cf0243 100644 --- a/C4/Koha.pm +++ b/C4/Koha.pm @@ -914,15 +914,6 @@ sub displayServers { my @primaryserverloop; while ( my $data = $rq->fetchrow_hashref ) { - my %cell; - $cell{label} = $data->{'description'}; - $cell{id} = $data->{'name'}; - $cell{value} = - $data->{host} - . ( $data->{port} ? ":" . $data->{port} : "" ) . "/" - . $data->{database} - if ( $data->{host} ); - $cell{checked} = $data->{checked}; push @primaryserverloop, { label => $data->{description}, -- 2.39.2