diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/core/os_chanlist.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,6 @@ Anope Version S V N -------------------- +01/15 F Re-assigned access to OS CHANLIST to Services Opers [#827] Anope Version 1.7.21 -------------------- diff --git a/src/core/os_chanlist.c b/src/core/os_chanlist.c index 39a15ed68..96285b827 100644 --- a/src/core/os_chanlist.c +++ b/src/core/os_chanlist.c @@ -35,7 +35,7 @@ int AnopeInit(int argc, char **argv) moduleAddVersion("$Id$"); moduleSetType(CORE); - c = createCommand("CHANLIST", do_chanlist, NULL, + c = createCommand("CHANLIST", do_chanlist, is_services_oper, OPER_HELP_CHANLIST, -1, -1, -1, -1); moduleAddCommand(OPERSERV, c, MOD_UNIQUE); diff --git a/version.log b/version.log index 23a754e8e..d0280275a 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="21" VERSION_EXTRA="-svn" -VERSION_BUILD="1346" +VERSION_BUILD="1347" # $Log$ # +# BUILD : 1.7.21 (1347) +# BUGS : 827 +# NOTES : Re-assigned OS CHANLIST perms to Services Opers +# # BUILD : 1.7.21 (1346) # BUGS : 826 # NOTES : GPL required header added |