summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-12-02 16:51:10 +0000
committercertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2007-12-02 16:51:10 +0000
commita7c2b269dbe20101664bbb6baa97f02f57b280c2 (patch)
tree97012737d13fa7b2b6c084146a53be800c4bb065
parentc487fadebb76b88767c606a5f5ae1250f5e44a6a (diff)
git-svn-id: svn://svn.anope.org/anope/trunk@1312 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1030 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes3
-rw-r--r--install.js2
-rw-r--r--lang/en_us.l2
-rw-r--r--src/protocol/inspircd11.c2
-rw-r--r--version.log6
5 files changed, 11 insertions, 4 deletions
diff --git a/Changes b/Changes
index 6e5592295..f1c5b2950 100644
--- a/Changes
+++ b/Changes
@@ -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.