1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 17:23:14 +02:00

Fixed /ns info to show when a nick expires to services opers, not only admins

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2900 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-04-20 02:11:46 +00:00
parent c66f28ed61
commit b67dada56f
3 changed files with 5 additions and 2 deletions
+1
View File
@@ -3,6 +3,7 @@ Anope Version 1.8 - SVN
4/15 F Fixed os_info to backup its database on Windows [ #00]
4/15 F Fixed a potential crash in cs_clear ops [#1154]
4/16 F Fixed missing TS6SID on FJOIN in inspircd12 [ #00]
4/19 F Fixed ns_info to show nick expire times to opers not only admins [ #00]
Anope Version 1.8.4
-------------------
+1 -1
View File
@@ -264,7 +264,7 @@ int do_info(User * u)
if (na->status & NS_NO_EXPIRE) {
notice_lang(s_NickServ, u, NICK_INFO_NO_EXPIRE);
} else {
if (is_services_admin(u)) {
if (is_servadmin) {
expt = na->last_seen + NSExpire;
tm = localtime(&expt);
strftime_lang(buf, sizeof(buf), na->u,
+3 -1
View File
@@ -9,9 +9,11 @@ VERSION_MAJOR="1"
VERSION_MINOR="8"
VERSION_PATCH="4"
VERSION_EXTRA="-svn"
VERSION_BUILD="2896"
VERSION_BUILD="2900"
# $Log$ # Changes since the 1.8.4 Release
#Revision 2900 - Fixed /ns info to show when a nick expires to services opers, not only admins
#Revision 2899 - Fixed missing SID on FJOIN in InspIRCd12 protocol module
#Revision 2896 - Fixed bug #1153 - Always save channel topics internally, even if the new topic matches the last saved topic
#Revision 2895 - Fixed bug #1154 - Fixed a potential crash in cs_clear ops
#Revision 2894 - Check if a command routine exists before all command calls