diff options
-rw-r--r-- | src/protocol/inspircd11.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 972ffd1b3..5e489300f 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -615,7 +615,8 @@ void inspircd_cmd_mode(char *source, char *dest, char *buf) if (!buf) { return; } - send_cmd(source ? source : s_OperServ, "MODE %s %s", dest, buf); + + send_cmd(source ? source : s_OperServ, "FMODE %s %u %s", dest, findchan(dest)->creation_time, buf); } int anope_event_version(char *source, int ac, char **av) diff --git a/version.log b/version.log index 4769121ea..6c735be94 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="19" VERSION_EXTRA="-svn" -VERSION_BUILD="1318" +VERSION_BUILD="1319" # $Log$ # +# BUILD : 1.7.19 (1319) +# BUGS : +# NOTES : +# # BUILD : 1.7.19 (1318) # BUGS : 791 # NOTES : Fixed inconsistent use of ACCESS events |