From: lpsolit%gmail.com <> Date: Tue, 18 Aug 2009 23:15:22 +0000 (+0000) Subject: Bug 370885: Arrows in dependency graphs are drawn the wrong way - Patch by FrédÃ... X-Git-Tag: bugzilla-3.5.1~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93092e21d945a135b7b9ec5a827ffb8980686ed3;p=thirdparty%2Fbugzilla.git Bug 370885: Arrows in dependency graphs are drawn the wrong way - Patch by Frédéric Buclin r=wicked r=wurblzap r=mkanat a=LpSolit --- diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 6f2a95503d..300c36c09a 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -89,7 +89,7 @@ sub AddLink { my $key = "$blocked,$dependson"; if (!exists $edgesdone{$key}) { $edgesdone{$key} = 1; - print $fh "$blocked -> $dependson\n"; + print $fh "$dependson -> $blocked\n"; $seen{$blocked} = 1; $seen{$dependson} = 1; }