From: Don Armstrong Date: Fri, 7 Sep 2007 12:18:44 +0000 (+0200) Subject: * Even though it's meaningless, fix the stupid ARRAY(0x...) printout X-Git-Tag: release/2.6.0~518^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a52eb5e039ec36800f61c119c1b2a13b012d92e7;p=debbugs.git * Even though it's meaningless, fix the stupid ARRAY(0x...) printout bug so people stop filing it over and over and over again. --- diff --git a/cgi/pkgreport.cgi b/cgi/pkgreport.cgi index ad9dcfe..673a2db 100755 --- a/cgi/pkgreport.cgi +++ b/cgi/pkgreport.cgi @@ -523,12 +523,12 @@ print " [0]); print ""; print " $pkgsane version \n"; } elsif (defined $src) { my $v = html_escape($version) || ""; - my $srcsane = html_escape($src); + my $srcsane = html_escape($src->[0]); print ""; print " $srcsane version \n"; }