From 7f6380ae8bf985f6f9ae44964a422aefd578c2ed Mon Sep 17 00:00:00 2001 From: Thomas Ward Date: Mon, 30 Mar 2015 11:36:12 -0400 Subject: [PATCH] Update 'User Deleted' message to match format The User Deleted output for a success does not match the rest of the output formats for other commands and needs to match the same 'standard' for outputs. --- modules/controlpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/controlpanel.cpp b/modules/controlpanel.cpp index e27b3dcb..864fb89c 100644 --- a/modules/controlpanel.cpp +++ b/modules/controlpanel.cpp @@ -884,7 +884,7 @@ class CAdminMod : public CModule { return; } - PutModule("User " + sUsername + " deleted!"); + PutModule("User [" + sUsername + "] deleted!"); return; }