summaryrefslogtreecommitdiff
path: root/src/commands/cmd_zline.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-10-26 19:09:25 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-10-26 19:09:25 +0000
commita718e0534352084e9fb28b392208d3cac7ae2742 (patch)
tree4699f4e0a4c0ba206ec2fa6cedd02b528f0de83a /src/commands/cmd_zline.cpp
parent2f717cb4dc43864f585ebdfd4d33ae6aa8abdeb6 (diff)
Fix obvious oversight spotted by Ankit, provide xline reasons when adding them
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10720 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_zline.cpp')
-rw-r--r--src/commands/cmd_zline.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/cmd_zline.cpp b/src/commands/cmd_zline.cpp
index 6151d7181..feaeb6c6a 100644
--- a/src/commands/cmd_zline.cpp
+++ b/src/commands/cmd_zline.cpp
@@ -1,4 +1,4 @@
-/* +------------------------------------+
+i/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
@@ -67,13 +67,13 @@ CmdResult CommandZline::Handle (const std::vector<std::string>& parameters, User
{
if (!duration)
{
- ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Z-line for %s.",user->nick.c_str(),target.c_str());
+ ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Z-line for %s: %s",user->nick.c_str(),target.c_str(), parameters[2].c_str());
}
else
{
time_t c_requires_crap = duration + ServerInstance->Time();
- ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Z-line for %s, expires on %s",user->nick.c_str(),target.c_str(),
- ServerInstance->TimeString(c_requires_crap).c_str());
+ ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Z-line for %s, expires on %s: %s",user->nick.c_str(),target.c_str(),
+ ServerInstance->TimeString(c_requires_crap).c_str(), parameters[2].c_str());
}
ServerInstance->XLines->ApplyLines();
}