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

Merge pull request #40 from attilamolnar/2.0+csclonefix

Fix cs_clone allowing users to clone a channel to itself
This commit is contained in:
Adam
2014-01-26 16:08:23 -08:00
+7
View File
@@ -49,6 +49,13 @@ public:
source.Reply(CHAN_X_NOT_REGISTERED, target.c_str());
return;
}
if (ci == target_ci)
{
source.Reply(_("Cannot clone channel \002%s\002 to itself!"), target.c_str());
return;
}
if (!source.IsFounder(ci) || !source.IsFounder(target_ci))
{
if (!source.HasPriv("chanserv/administration"))