From: minima Date: Sun, 19 Dec 2004 13:14:14 +0000 (+0000) Subject: change so that ve7cc gets CC11 frames X-Git-Tag: R_1_52~250 X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=a4acd5dfb3aa2bdc2f7108776fbbdc33c5e4fd51;p=spider.git change so that ve7cc gets CC11 frames --- diff --git a/cmd/show/dx.pl b/cmd/show/dx.pl index f28ae1a4..009b5fa6 100644 --- a/cmd/show/dx.pl +++ b/cmd/show/dx.pl @@ -346,10 +346,14 @@ my @res = Spot::search($expr, $fromday, $today, $from, $to, $hint, $dofilter ? $ my $ref; my @dx; foreach $ref (@res) { - if ($real) { - push @out, $self->format_dx_spot(@$ref); + if ($self->ve7cc) { + push @out, VE7CC::dx_spot($self, @$ref); } else { - push @out, Spot::formatl(@$ref); + if ($real) { + push @out, $self->format_dx_spot(@$ref); + } else { + push @out, Spot::formatl(@$ref); + } } }