diff options
author | Adam <Adam@anope.org> | 2012-01-24 16:42:21 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-01-24 16:42:21 -0500 |
commit | f10f49d6fccd85d182b6467b3592dac408f43567 (patch) | |
tree | 18875719f23680dae98770fd62319c69b29ea9f2 | |
parent | d06cdaab2980e1275906812978e7e35e6ba66e4c (diff) |
Added missing expires column in /os akill view
-rw-r--r-- | modules/commands/os_akill.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/os_akill.cpp b/modules/commands/os_akill.cpp index 86dc2a8db..db303a2f3 100644 --- a/modules/commands/os_akill.cpp +++ b/modules/commands/os_akill.cpp @@ -308,7 +308,7 @@ class CommandOSAKill : public Command } ListFormatter list; - list.addColumn("Number").addColumn("Mask").addColumn("Creator").addColumn("Created").addColumn("Reason"); + list.addColumn("Number").addColumn("Mask").addColumn("Creator").addColumn("Created").addColumn("Expires").addColumn("Reason"); this->ProcessList(source, params, list); } |