From 6c079657d84ad6b348fc1b268cc9c09b7071abd3 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Sun, 12 Jul 2009 18:18:57 +0000 Subject: [PATCH] skip inputs without data git-svn-id: svn+ssh://mjesec/home/dpavlin/svn/webpac2/trunk@1242 07558da8-63fa-0310-ba24-9fe276d99e06 --- vhost/webpac2.cgi | 1 + 1 file changed, 1 insertion(+) diff --git a/vhost/webpac2.cgi b/vhost/webpac2.cgi index 19dae1a..96cfb85 100755 --- a/vhost/webpac2.cgi +++ b/vhost/webpac2.cgi @@ -136,6 +136,7 @@ my $inputs_available = 0; foreach ( @{ $db->{input} } ) { my $input = $_->{name} || die "no name in ",dump( $_ ); + next unless defined $stats->{input}->{$input}; # skip inputs without data if ( ! $only_input->{'-labels'}->{$input} ) { push @{ $only_input->{'-values'} }, $input; $only_input->{'-labels'}->{$input} = $_->{description} || $input; -- 2.20.1