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

fixed missing SID on FJOIN in inspircd12 protocol module

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2899 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
DukePyrolator
2010-04-17 16:17:20 +00:00
parent 87e96d6f52
commit c66f28ed61
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@ Anope Version 1.8 - SVN
-----------------------
4/15 F Fixed os_info to backup its database on Windows [ #00]
4/15 F Fixed a potential crash in cs_clear ops [#1154]
4/16 F Fixed missing TS6SID on FJOIN in inspircd12 [ #00]
Anope Version 1.8.4
-------------------
+1 -1
View File
@@ -1005,7 +1005,7 @@ void inspircd_cmd_pong(char *servname, char *who)
void inspircd_cmd_join(char *user, char *channel, time_t chantime)
{
Uid *ud = (user ? find_uid(user) : NULL);
send_cmd(NULL, "FJOIN %s %ud + :,%s", channel, (unsigned int)chantime, ud ? ud->uid : user);
send_cmd(TS6SID, "FJOIN %s %ud + :,%s", channel, (unsigned int)chantime, ud ? ud->uid : user);
}
/* UNSQLINE */