diff options
author | mkanat%kerio.com <> | 2005-02-25 11:01:45 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-02-25 11:01:45 +0100 |
commit | 12feab493e0f734375ac6a542560e2603994bdf6 (patch) | |
tree | 527b869c7dc9ff6ca6f3c16a8aade85da1bde834 /Bugzilla | |
parent | a1dfde52fc4c46ac9b810d4f2be9f3beb8dd80ae (diff) | |
download | bugzilla-12feab493e0f734375ac6a542560e2603994bdf6.tar.gz bugzilla-12feab493e0f734375ac6a542560e2603994bdf6.tar.xz |
Bug (None): Fix for checkin from Bug 280493, fix a trailing comma in Bug.pm
Thanks to glob for pointing it out.
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 = ? |