Bug 40933

Debug rss comments SQL


git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@363 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2009-09-01 19:12:03 +00:00
parent ef11f3a38a
commit 8b4063c160
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ my $bugsquery = "
LEFT JOIN components cm ON cm.id=b.component_id
LEFT JOIN fielddefs f ON f.id=a.fieldid
LEFT JOIN attachments at ON at.attach_id=a.attach_id
WHERE at.isprivate IS NULL OR at.isprivate=0 AND a.bug_id IN ($sqlquery)
WHERE (at.isprivate IS NULL OR at.isprivate=0) AND a.bug_id IN ($sqlquery)
ORDER BY a.bug_when DESC
LIMIT 100)