Test fix for topic loop

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3732 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2006-03-18 21:22:17 +00:00
parent acf64694a6
commit 7a49be0b34

View File

@ -946,14 +946,13 @@ class TreeSocket : public InspSocket
WriteChannel(c, user, "TOPIC %s :%s", c->name, c->topic);
nsource = user->server;
}
/* all done, send it on its way */
params[3] = ":" + params[3];
DoOneToAllButSender(source,"FTOPIC",params,nsource);
}
}
}
/* all done, send it on its way */
params[3] = ":" + params[3];
DoOneToAllButSender(source,"FTOPIC",params,nsource);
return true;
}