1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 11:53:14 +02:00

Fixed os_info to display syntax errors if you entered no text, found by Cronus

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2816 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-03-16 05:52:05 +00:00
parent 01994c1ba1
commit eb0c255fad
2 changed files with 6 additions and 1 deletions
+4
View File
@@ -198,6 +198,8 @@ int myAddNickInfo(User * u)
} else {
moduleNoticeLang(s_NickServ, u, OINFO_SYNTAX);
}
} else {
moduleNoticeLang(s_NickServ, u, OINFO_SYNTAX);
}
return MOD_CONT;
}
@@ -266,6 +268,8 @@ int myAddChanInfo(User * u)
} else {
moduleNoticeLang(s_ChanServ, u, OCINFO_SYNTAX);
}
} else {
moduleNoticeLang(s_ChanServ, u, OCINFO_SYNTAX);
}
return MOD_CONT;
}
+2 -1
View File
@@ -9,10 +9,11 @@ VERSION_MAJOR="1"
VERSION_MINOR="8"
VERSION_PATCH="3"
VERSION_EXTRA="-svn"
VERSION_BUILD="2815"
VERSION_BUILD="2816"
# $Log$ # Changes since 1.8.3 Release
#Revision 2816 - Fixed os_info to display syntax errors if you entered no text
#Revision 2815 - Fixed os_info to backup its databases properly with the now-working ModuleDatabaseBackup function
#Revision 2811 - Fixed bug #1140 - Made ModuleDatabaseBackup() not fail when multiple modules want to back up their databases
#Revision 2810 - Fixed bug #1139 - Delete the correct nicks from hs_request database when they are dropped