diff options
-rw-r--r-- | Changes | 5 | ||||
-rw-r--r-- | src/core/ns_info.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 10 insertions, 4 deletions
@@ -1,6 +1,8 @@ Anope Version S V N -------------------- 01/24 A Added a check for hosts too long in BotServs bots. [ #00] +02/12 A Added SUSPENDED to NS LIST keywords. [#869] +02/20 A Added NS SASET LANGUAGE. [#872] 01/15 F BOT_NOT_ASSIGNED language string error. [#828] 01/15 F listchans now shows if a channel is suspended. [#825] 01/15 F listnicks now shows if a nickname is suspended. [#825] @@ -38,9 +40,8 @@ Anope Version S V N 02/11 F Added missed debug message when HostServ is disabled. [#863] 02/12 F rdb_close() where rdb_open() is used in rdb_dbase() functions. [#862] 02/12 F Removed extra loop when parsing defcon modes. [#867] -02/12 A Added SUSPENDED to NS LIST keywords. [#869] -02/20 A Added NS SASET LANGUAGE. [#872] 02/21 F Fixed errors in lang files related to NS SASET LANGUAGE [#881] +04/30 F Operators can now also use NickServ INFO ALL. [ #00] Provided by Trystan <trystan@nomadirc.net> - 2008 02/11 F Last part of memory leak in cs_akick() [#870] diff --git a/src/core/ns_info.c b/src/core/ns_info.c index 665faabbb..ecc2b3bb8 100644 --- a/src/core/ns_info.c +++ b/src/core/ns_info.c @@ -82,7 +82,8 @@ int do_info(User * u) NickAlias *na; NickRequest *nr = NULL; - int is_servadmin = is_services_admin(u); + /* Being an oper is enough from now on -GD */ + int is_servadmin = is_services_oper(u); if (!nick) { syntax_error(s_NickServ, u, "INFO", NICK_INFO_SYNTAX); diff --git a/version.log b/version.log index a70faf854..4af5b1ee7 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="1392" +VERSION_BUILD="1393" # $Log$ # +# BUILD : 1.7.21 (1393) +# BUGS : +# NOTES : Services Operators can now also use NickServ INFO ALL +# # BUILD : 1.7.21 (1392) # BUGS : # NOTES : <Hal9000> fixes a potential crash in channels.c and does handle the TS on incoming FMODE in inspircd.11 |