diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-09-04 17:56:11 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-09-04 17:56:11 +0000 |
commit | ea09f79cb445d12f56283a6b1101ee30dfc0b55c (patch) | |
tree | c5801ce795bdbbb4bddc0395158866a3f40c9a8e | |
parent | 9e5fdf958fb422739fd62c2bf2bb9acd3d0cb348 (diff) |
BUILD : 1.7.10 (869) BUGS : NOTES : pmodule_cmd_unsgline for plexus set plexus_cmd_unsqline instead of pmodule_cmd_unsgline (so unsQline instead of unsGline)
git-svn-id: svn://svn.anope.org/anope/trunk@869 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@618 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/plexus.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -8,6 +8,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005 07/01 A Events for channel access/xop updates. [ #00] 06/26 A New module pack module: hs_request. [ #00] 06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389] +09/04 F Protocol mode for plexus called wrong UNSGLINE function. [ #00] 08/31 F Help for /os modlist had faulty 'limited to' information. [ #00] 08/30 F Changed UserKeys to RECOMMENDED instead of REQUIRED. [ #00] 08/29 F Pseudo-clients can now part with no instead of an empty reason. [ #00] diff --git a/src/protocol/plexus.c b/src/protocol/plexus.c index 7ad6dc705..11f807bbc 100644 --- a/src/protocol/plexus.c +++ b/src/protocol/plexus.c @@ -1759,7 +1759,7 @@ moduleAddAnopeCmds () pmodule_cmd_connect (plexus_cmd_connect); pmodule_cmd_svshold (plexus_cmd_svshold); pmodule_cmd_release_svshold (plexus_cmd_release_svshold); - pmodule_cmd_unsgline (plexus_cmd_unsqline); + pmodule_cmd_unsgline (plexus_cmd_unsgline); pmodule_cmd_unszline (plexus_cmd_unszline); pmodule_cmd_szline (plexus_cmd_szline); pmodule_cmd_sgline (plexus_cmd_sgline); diff --git a/version.log b/version.log index 44037a7a5..db2612964 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="10" -VERSION_BUILD="868" +VERSION_BUILD="869" # $Log$ # +# BUILD : 1.7.10 (869) +# BUGS : +# NOTES : pmodule_cmd_unsgline for plexus set plexus_cmd_unsqline instead of pmodule_cmd_unsgline (so unsQline instead of unsGline) +# # BUILD : 1.7.10 (868) # BUGS : # NOTES : Fixed duplicate Changes entries for Hal9000 |