1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 12:43:13 +02:00

BUILD : 1.7.19 (1251) BUGS : 732 NOTES : Fixed /os MODINFO showing no

git-svn-id: svn://svn.anope.org/anope/trunk@1251 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@970 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-06-18 13:37:10 +00:00
parent e16865f8bb
commit 813c850fa2
3 changed files with 15 additions and 12 deletions
+1
View File
@@ -3,6 +3,7 @@ Anope Version S V N
06/15 F Non-existing servers being SQUIT'd when they were juped. [#726]
06/15 F Back online notice being sent to juped servers. [#726]
06/15 F Not informing opers a SQUIT for a juped server was received. [#718]
06/18 F OperServ MODINFO giving misleading errors. [#732]
Anope Version 1.7.19
--------------------
+9 -11
View File
@@ -72,7 +72,6 @@ int do_modinfo(User * u)
char timebuf[64];
Module *m;
int idx = 0;
int display = 0;
file = strtok(NULL, "");
if (!file) {
@@ -88,18 +87,17 @@ int do_modinfo(User * u)
m->version ? m->version : "?",
m->author ? m->author : "?", timebuf);
for (idx = 0; idx < MAX_CMD_HASH; idx++) {
display += showModuleCmdLoaded(HOSTSERV[idx], m->name, u);
display += showModuleCmdLoaded(OPERSERV[idx], m->name, u);
display += showModuleCmdLoaded(NICKSERV[idx], m->name, u);
display += showModuleCmdLoaded(CHANSERV[idx], m->name, u);
display += showModuleCmdLoaded(BOTSERV[idx], m->name, u);
display += showModuleCmdLoaded(MEMOSERV[idx], m->name, u);
display += showModuleCmdLoaded(HELPSERV[idx], m->name, u);
display += showModuleMsgLoaded(IRCD[idx], m->name, u);
showModuleCmdLoaded(HOSTSERV[idx], m->name, u);
showModuleCmdLoaded(OPERSERV[idx], m->name, u);
showModuleCmdLoaded(NICKSERV[idx], m->name, u);
showModuleCmdLoaded(CHANSERV[idx], m->name, u);
showModuleCmdLoaded(BOTSERV[idx], m->name, u);
showModuleCmdLoaded(MEMOSERV[idx], m->name, u);
showModuleCmdLoaded(HELPSERV[idx], m->name, u);
showModuleMsgLoaded(IRCD[idx], m->name, u);
}
}
if (display == 0) {
} else {
notice_lang(s_OperServ, u, OPER_MODULE_NO_INFO, file);
}
return MOD_CONT;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="19"
VERSION_EXTRA="-svn"
VERSION_BUILD="1250"
VERSION_BUILD="1251"
# $Log$
#
# BUILD : 1.7.19 (1251)
# BUGS : 732
# NOTES : Fixed /os MODINFO showing 'no information about module' when it was loaded but had no hooked commands
#
# BUILD : 1.7.19 (1250)
# BUGS : 718
# NOTES : Fixed the fact that we did not send a receive-notification for the SQUIT for a juped server