diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/memoserv.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -33,6 +33,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2004 11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00] Provided by DrStein <gacevedo@anope.org> - 2004 +11/28 F Fixes RSEND oddity [#237] 11/26 F Memos sent as notification of receipt can't be cancelled. [#192] 11/23 F Moving Services Operators to Services Admins and vice-versa [#230] 11/22 F HelpChan +h mode not being given if status was greater then op. [#223] diff --git a/src/memoserv.c b/src/memoserv.c index a1255f5bc..0b32cff83 100644 --- a/src/memoserv.c +++ b/src/memoserv.c @@ -611,7 +611,7 @@ static int read_memo(User * u, int index, MemoInfo * mi, const char *chan) m->flags &= ~MF_UNREAD; /* Check if a receipt notification was requested */ - if (m->flags && MF_RECEIPT) { + if (m->flags & MF_RECEIPT) { rsend_notify(u, m, chan); } diff --git a/version.log b/version.log index f86687413..63bc24a77 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="465" +VERSION_BUILD="466" # $Log$ # +# BUILD : 1.7.6 (466) +# BUGS : 237 +# NOTES : docs patch to bug 237 +# # BUILD : 1.7.6 (465) # BUGS : 218, 235 # NOTES : 1. correct the grammer in the example.conf |