diff options
author | Adam <Adam@anope.org> | 2010-09-16 21:16:20 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-09-16 21:16:20 -0400 |
commit | 86c1dab2863f228e92ce7e0bd23ffb17cda0242b (patch) | |
tree | d4adf87e720de20eedcd413cc1b7bc9b06247766 /modules/core/cs_info.cpp | |
parent | cd1e9f3181234521a2858f73b47f57a22c0dad40 (diff) |
Fixed many bugs and crashes
Diffstat (limited to 'modules/core/cs_info.cpp')
-rw-r--r-- | modules/core/cs_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_info.cpp b/modules/core/cs_info.cpp index add7f39ff..b25eeb0ea 100644 --- a/modules/core/cs_info.cpp +++ b/modules/core/cs_info.cpp @@ -57,7 +57,7 @@ class CommandCSInfo : public Command } /* Should we show all fields? Only for sadmins and identified users */ - if (has_auspex && check_access(u, ci, CA_INFO)) + if (has_auspex || check_access(u, ci, CA_INFO)) show_all = true; notice_lang(Config->s_ChanServ, u, CHAN_INFO_HEADER, chan.c_str()); |