We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a3f66a + ee39430 commit 35d67fcCopy full SHA for 35d67fc
reports.py
@@ -273,11 +273,12 @@ def deleted_prods( self ):
273
min(log_timestamp) AS firstdel,
274
max(log_timestamp) AS lastdel,
275
group_concat(
276
- log_timestamp," - ",log_comment,"<br>"
+ log_timestamp," - ",comment_text,"<br>"
277
ORDER BY log_timestamp ASC
278
SEPARATOR " "
279
) as log
280
FROM categorylinks,page,logging_logindex
281
+ LEFT OUTER JOIN comment ON log_comment_id = comment_id
282
WHERE cl_from=page_id
283
AND cl_to="All_articles_proposed_for_deletion"
284
AND page_title=log_title
0 commit comments