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 <galen.charlton@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Andrew Moore 2008-07-29 11:42:48 -05:00 committed by Joshua Ferraro
parent 00ad2d7e69
commit 7d6eddf1ec

View file

@ -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},