From deb857f686e2be8f34557d016f992377fa9c2281 Mon Sep 17 00:00:00 2001 From: Bryce Boe Date: Wed, 26 Dec 2012 14:43:47 -0800 Subject: [PATCH] Show hidden submissions in moderator listings. --- r2/r2/controllers/front.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/controllers/front.py b/r2/r2/controllers/front.py index 0e6aca96c..588d7cece 100755 --- a/r2/r2/controllers/front.py +++ b/r2/r2/controllers/front.py @@ -514,7 +514,7 @@ class FrontController(RedditController, OAuth2ResourceController): def keep_fn(x): # no need to bother mods with banned users, or deleted content - if getattr(x,'hidden',False) or x._deleted: + if x._deleted: return False if getattr(x,'author',None) == c.user and c.user._spam: return False