]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/ftopic.cpp
Some more safety checks to catch out invalid client introductions (e.g. from atheme...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / ftopic.cpp
index 663baa089327ddcbe67075b510ffeee4c23db630..351c4327a4c68f8ff2e3a1745d5a08b5134c13f1 100644 (file)
@@ -27,21 +27,19 @@ bool TreeSocket::ForceTopic(const std::string &source, std::deque<std::string> &
        if (params.size() != 4)
                return true;
        time_t ts = atoi(params[1].c_str());
-       std::string nsource = source;
-       Channel* c = this->Instance->FindChan(params[0]);
+       Channel* c = this->ServerInstance->FindChan(params[0]);
        if (c)
        {
                if ((ts >= c->topicset) || (c->topic.empty()))
                {
-                       User* user = this->Instance->FindNick(source);
-
                        if (c->topic != params[3])
                        {
+                               User* user = this->ServerInstance->FindNick(source);
                                // Update topic only when it differs from current topic
-                               c->topic.assign(params[3], 0, Instance->Config->Limits.MaxTopic);
+                               c->topic.assign(params[3], 0, ServerInstance->Config->Limits.MaxTopic);
                                if (!user)
                                {
-                                       c->WriteChannelWithServ(Instance->Config->ServerName, "TOPIC %s :%s", c->name.c_str(), c->topic.c_str());
+                                       c->WriteChannelWithServ(ServerInstance->Config->ServerName, "TOPIC %s :%s", c->name.c_str(), c->topic.c_str());
                                }
                                else
                                {
@@ -53,27 +51,9 @@ bool TreeSocket::ForceTopic(const std::string &source, std::deque<std::string> &
                        c->setby.assign(params[2], 0, 127);
                        c->topicset = ts;
 
-                       /*
-                        * Take careful note of what happens here;
-                        * Above, we display the topic change to the server IF the topic incoming is different to the topic already set.
-                        * HERE, we find the server the user that sent this topic is on, so we *do not* send topics back to the link they just
-                        * came from. This *cannot* be easily merged with the above check!
-                        *
-                        * Thanks to Anope and Namegduf for finally helping me isolate this
-                        *                      -- w00t (5th/aug/2008)
-                        */
-                       if (user)
-                       {
-                               nsource = user->server;
-                       }
-
                        /* all done, send it on its way */
                        params[3] = ":" + params[3];
-                       User* u = Instance->FindNick(nsource);
-                       if (u)
-                               Utils->DoOneToAllButSender(u->uuid,"FTOPIC",params,u->server);
-                       else
-                               Utils->DoOneToAllButSender(source,"FTOPIC",params,nsource);
+                       Utils->DoOneToAllButSender(source,"FTOPIC",params,source);
                }
 
        }