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:
parent
00ad2d7e69
commit
7d6eddf1ec
1 changed files with 0 additions and 9 deletions
|
@ -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},
|
||||
|
|
Loading…
Reference in a new issue