1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 05:53:13 +02:00

Store mlock in the databases and removed some unused functions from misc.cpp

This commit is contained in:
Adam
2011-03-09 01:25:49 -05:00
parent 8eb23e7d48
commit e9aa04a8f4
9 changed files with 133 additions and 411 deletions
+1 -4
View File
@@ -129,10 +129,7 @@ class CommandCSMode : public Command
Anope::string modeparam = ml.param;
if (!modeparam.empty())
modeparam = " " + modeparam;
Anope::string setter = ml.setter;
if (setter.empty())
setter = ci->founder ? ci->founder->display : "Unknown";
source.Reply(_("%c%c%s, by %s on %s"), ml.set ? '+' : '-', cm->ModeChar, modeparam.c_str(), setter.c_str(), do_strftime(ml.created).c_str());
source.Reply(_("%c%c%s, by %s on %s"), ml.set ? '+' : '-', cm->ModeChar, modeparam.c_str(), ml.setter.c_str(), do_strftime(ml.created).c_str());
}
}
}