From c10a02f71307afaf8617c63ff561808d1c37412c Mon Sep 17 00:00:00 2001 From: Daniel Benoy Date: Sun, 2 Jun 2013 06:53:57 -0400 Subject: [PATCH] Fixed security hole checking channels with @cwho --- src/commands/default/comms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/default/comms.py b/src/commands/default/comms.py index 45e3598a29..fa0397292d 100644 --- a/src/commands/default/comms.py +++ b/src/commands/default/comms.py @@ -449,6 +449,7 @@ class CmdCWho(MuxPlayerCommand): if not channel.access(self.caller, "listen"): string = "You can't access this channel." self.msg(string) + return string = "\n{CChannel subscriptions{n" string += "\n{w%s:{n\n" % channel.key conns = PlayerChannelConnection.objects.get_all_connections(channel)