mirror of
https://github.com/anope/anope.git
synced 2026-07-08 14:23:14 +02:00
BUILD : 1.7.2 (95) BUGS : 38 NOTES : Fixed xOP management inconsistency.
git-svn-id: svn://svn.anope.org/anope/trunk@95 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@71 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
1aa44aa66d
commit
1be0b995d4
@@ -1,6 +1,7 @@
|
||||
Anope Version 1.7.x (will be renamed when next release is produced)
|
||||
-------------------
|
||||
Provided by Anope Dev. <dev@anope.org>
|
||||
2004/05/12 Fixed xOP management inconsistency ( #38 )
|
||||
2004/05/11 Fixed a bug with module unload / memo moduleData ( #43 )
|
||||
2004/05/05 Fixed bug with RDB and empty nickserv greet message (# 28).
|
||||
2004/05/04 Fixed Badwords kicker to ignore control characters and color codes.
|
||||
|
||||
+1
-1
@@ -3660,7 +3660,7 @@ static int do_xop(User * u, char *xname, int xlev, int *xmsgs)
|
||||
|
||||
ulev = get_access(u, ci);
|
||||
|
||||
if (!is_servadmin && (xlev >= ulev || ulev < ACCESS_AOP)) {
|
||||
if (xlev >= ulev || ulev < ACCESS_AOP) {
|
||||
notice_lang(s_ChanServ, u, PERMISSION_DENIED);
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
+5
-1
@@ -8,11 +8,15 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="2"
|
||||
VERSION_BUILD="94"
|
||||
VERSION_BUILD="95"
|
||||
VERSION_EXTRA=""
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.2 (95)
|
||||
# BUGS : 38
|
||||
# NOTES : Fixed xOP management inconsistency.
|
||||
#
|
||||
# BUILD : 1.7.2 (94)
|
||||
# BUGS : 40 (partial)
|
||||
# NOTES : Added RANDOMNEWS to pt.l /OS HELP
|
||||
|
||||
Reference in New Issue
Block a user