diff options
author | lpsolit%gmail.com <> | 2006-01-27 07:33:33 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-01-27 07:33:33 +0100 |
commit | 64c90c2ee21a2cb8b3808ab5f68480ac7045d86d (patch) | |
tree | 7fbc6f06fa151424b53a558b730dd22bbef18a10 /Bugzilla | |
parent | 3bab091dccdb2bdfa10700b64664c6ba77b2ad2f (diff) | |
download | bugzilla-64c90c2ee21a2cb8b3808ab5f68480ac7045d86d.tar.gz bugzilla-64c90c2ee21a2cb8b3808ab5f68480ac7045d86d.tar.xz |
Bug 323721: [PostgreSQL] New charts feature crashes - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Chart.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 5c71eb818..a0853d508 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -395,7 +395,7 @@ sub getVisibleSeries { " AND cgm.group_id NOT IN($grouplist) " . "WHERE creator = " . Bugzilla->user->id . " OR " . " cgm.category_id IS NULL " . - $dbh->sql_group_by('series_id', 'cc1.name, cc2.name, ' . + $dbh->sql_group_by('series.series_id', 'cc1.name, cc2.name, ' . 'series.name')); foreach my $series (@$serieses) { my ($cat, $subcat, $name, $series_id) = @$series; |