summaryrefslogtreecommitdiff
path: root/modules/core/cs_set_secureops.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-03-12 02:40:08 -0500
committerAdam <Adam@anope.org>2011-03-12 02:40:08 -0500
commit95469fde3055e1a257fd4e1027617892b912d07c (patch)
tree5e0c5fd126c7d0151c1ded6cdbda1bb9e290947e /modules/core/cs_set_secureops.cpp
parent9f46972f19060d2ede624bdec52b9091042e3735 (diff)
Added some access checks to cs_mode and fixed some language strings
Diffstat (limited to 'modules/core/cs_set_secureops.cpp')
-rw-r--r--modules/core/cs_set_secureops.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_secureops.cpp b/modules/core/cs_set_secureops.cpp
index 7b6606922..21fefdb61 100644
--- a/modules/core/cs_set_secureops.cpp
+++ b/modules/core/cs_set_secureops.cpp
@@ -30,12 +30,12 @@ class CommandCSSetSecureOps : public Command
if (params[1].equals_ci("ON"))
{
ci->SetFlag(CI_SECUREOPS);
- source.Reply(_("Secure ops option for %s is now \002\002."), ci->name.c_str());
+ source.Reply(_("Secure ops option for %s is now \002on\002."), ci->name.c_str());
}
else if (params[1].equals_ci("OFF"))
{
ci->UnsetFlag(CI_SECUREOPS);
- source.Reply(_("Secure ops option for %s is now \002\002."), ci->name.c_str());
+ source.Reply(_("Secure ops option for %s is now \002off\002."), ci->name.c_str());
}
else
this->OnSyntaxError(source, "SECUREOPS");