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:
@@ -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
|
||||
-------------------
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user