diff options
author | Adam <Adam@anope.org> | 2011-07-27 19:17:21 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-07-27 19:17:21 -0400 |
commit | 6e032ded6e76e36247df609620c0cc6488eceae3 (patch) | |
tree | b8549eaf1cc046decb9206cc18afcba3cc1f740e /modules/core | |
parent | e2b47e001fe0f4560bbf050964d9e60d20cb4e2b (diff) |
Bug #1288 - Fixed crash on /cs help access
Diffstat (limited to 'modules/core')
-rw-r--r-- | modules/core/cs_access.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/core/cs_access.cpp b/modules/core/cs_access.cpp index cf2e2c34a..643292c38 100644 --- a/modules/core/cs_access.cpp +++ b/modules/core/cs_access.cpp @@ -463,7 +463,7 @@ class CommandCSAccess : public Command "access to %s commands on the channel. Different\n" "user levels allow for access to different subsets of\n" "privileges. Any nick not on the access list has\n" - "a user level of 0.")); + "a user level of 0."), source.owner->nick.c_str()); source.Reply(" "); source.Reply(_("The \002ACCESS ADD\002 command adds the given mask to the\n" "access list with the given user level; if the mask is\n" @@ -494,8 +494,7 @@ class CommandCSAccess : public Command "to \002ACCESS LIST\002 but shows the creator and last used time.\n" " \n" "The \002ACCESS CLEAR\002 command clears all entries of the\n" - "access list."), - source.owner->nick.c_str()); + "access list.")); source.Reply(_("\002User access levels\002\n" " \n" "By default, the following access levels are defined:\n" |