diff --git a/files/classes/user.py b/files/classes/user.py index 2d8d0c7476..cdf33f36b6 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -1070,6 +1070,7 @@ class User(Base): @property @lazy def can_post_in_ghost_threads(self): + if SITE_NAME == 'WPD': return False if not TRUESCORE_GHOST_MINIMUM: return True if self.admin_level >= PERMS['POST_IN_GHOST_THREADS']: return True if self.truescore >= TRUESCORE_GHOST_MINIMUM: return True