From 12feab493e0f734375ac6a542560e2603994bdf6 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Fri, 25 Feb 2005 10:01:45 +0000 Subject: Bug (None): Fix for checkin from Bug 280493, fix a trailing comma in Bug.pm Thanks to glob for pointing it out. --- Bugzilla/Bug.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 9092ddf89..307ee4bed 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -149,7 +149,7 @@ sub initBug { delta_ts, COALESCE(SUM(votes.vote_count), 0), reporter_accessible, cclist_accessible, estimated_time, remaining_time, " . - $dbh->sql_date_format('deadline', '%Y-%m-%d') . ", + $dbh->sql_date_format('deadline', '%Y-%m-%d') . " FROM bugs LEFT JOIN votes using(bug_id), classifications, products, components WHERE bugs.bug_id = ? -- cgit v1.2.3-24-g4f1b