From: Dobrica Pavlinusic Date: Sun, 12 Jul 2009 18:18:57 +0000 (+0000) Subject: skip inputs without data X-Git-Url: http://git.rot13.org/?p=webpac2;a=commitdiff_plain;h=6c079657d84ad6b348fc1b268cc9c09b7071abd3;hp=23109b6227b31fe7880f7a2c836a68b0d3868368 skip inputs without data git-svn-id: svn+ssh://mjesec/home/dpavlin/svn/webpac2/trunk@1242 07558da8-63fa-0310-ba24-9fe276d99e06 --- 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;