From: myk%mozilla.org <> Date: Tue, 21 May 2002 21:18:00 +0000 (+0000) Subject: Fix for bug 143743: Eliminates warning by properly initializing array reference. X-Git-Tag: bugzilla-2.16rc2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6c34269440a034e909ecd5b71b8ff67b629f92a;p=thirdparty%2Fbugzilla.git Fix for bug 143743: Eliminates warning by properly initializing array reference. Fix by Myk Melez . r=bbaetz,justdave --- diff --git a/showdependencytree.cgi b/showdependencytree.cgi index 7f5d12d5c7..9b70605912 100755 --- a/showdependencytree.cgi +++ b/showdependencytree.cgi @@ -167,7 +167,7 @@ sub GetBug { $bug->{'assignee_email'}) = FetchSQLData(); $bug->{'open'} = IsOpenedState($bug->{'status'}); - $bug->{'dependencies'} = (); + $bug->{'dependencies'} = []; return $bug; }