diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | install.js | 2 | ||||
-rw-r--r-- | lang/en_us.l | 2 | ||||
-rw-r--r-- | src/protocol/inspircd11.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
5 files changed, 11 insertions, 4 deletions
@@ -46,6 +46,9 @@ Anope Version S V N 09/24 F Polish language reported itself as English when switching to it. [#789] 09/24 F OperServ HELP OPER showing incorrect access levels. [#788] 10/05 F Typo in inspircd11.c checking for m_chgident.so loaded. [#793] +12/02 F Fixed a typo in en_us.l. [#806] +12/02 F Fixed a typo in install.js. [#804] +12/02 F Fixed the protect commands in inspircd11.c. [#805] Provided by Trystan <trystan@nomadirc.net> - 2007 08/29 F Module runtime directory not always properly cleaned up. [#768] diff --git a/install.js b/install.js index 1bd549daf..7d6b6fc1f 100644 --- a/install.js +++ b/install.js @@ -159,7 +159,7 @@ var buildPackages = [ 'incpaths' : [ 'Program Files\\MySQL\\MySQL Server 5.1\\Include' ], - 'dllfile' : 'Program Files\\MySQL\\MySQL Server 5.1\\bin\\libmyql.dll', + 'dllfile' : 'Program Files\\MySQL\\MySQL Server 5.1\\bin\\libmsyql.dll', 'installedDrive' : 'C' }, diff --git a/lang/en_us.l b/lang/en_us.l index 862d294da..1deabc5af 100644 --- a/lang/en_us.l +++ b/lang/en_us.l @@ -5811,7 +5811,7 @@ OPER_HELP_SET_SUPERADMIN Setting this will grant you extra privileges such as the ability to be "founder" on all channel's etc... - This option is not persistant, and should only be used when + This option is not persistaet, and should only be used when needed, and set back to OFF when no longer needed. OPER_HELP_SET_SQL diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 0c2f1e1e1..29234c1ea 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -460,7 +460,7 @@ void inspircd_set_umode(User * user, int ac, char **av) void moduleAddIRCDMsgs(void) { Message *m; - updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + updateProtectDetails("PROTECT","PROTECTME","protect","deprotect","AUTOPROTECT","+a","-a"); m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); diff --git a/version.log b/version.log index 589d2ec0d..6a6ff3f06 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="1310" +VERSION_BUILD="1311" # $Log$ # +# BUILD : 1.7.19 (1311) +# BUGS : 804,805,806 +# NOTES : Applied the patches of my beer buddy. +# # BUILD : 1.7.19 (1310) # BUGS : 794 # NOTES : Fixes the segfault in inspircd11.c / anope_event_capab() on missing required modules. |