summaryrefslogtreecommitdiff
path: root/src/misc.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-11-04 17:55:14 -0400
committerAdam <Adam@anope.org>2011-11-04 17:55:14 -0400
commita42cafbf69ac2753cb891f87664d1218b00a1bcf (patch)
tree039c2cfb75d96adce264cb9647ba7699c865d9cf /src/misc.cpp
parent066e5b3fc08b6b85311e29aad6e78f12aba1a30e (diff)
Store flags for memos, fixed the expiring very soon message, fixed /os session view when a session exception is added at a lower limit than th default
Diffstat (limited to 'src/misc.cpp')
-rw-r--r--src/misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc.cpp b/src/misc.cpp
index 9354201b2..5e899effd 100644
--- a/src/misc.cpp
+++ b/src/misc.cpp
@@ -276,7 +276,7 @@ Anope::string expire_left(NickCore *nc, time_t expires)
if (!expires)
return translate(nc, NO_EXPIRE);
else if (expires <= Anope::CurTime)
- return translate(nc, _("expires at next database update"));
+ return translate(nc, _("expires momentarily"));
else
{
char buf[256];