From 5368d1634f4feb0715893a350018f531fafdd9be Mon Sep 17 00:00:00 2001 From: psychon Date: Mon, 7 Jan 2008 21:32:30 +0000 Subject: [PATCH] Make it more clear that the sample module is loaded Some others reported that all their text is read, but they did not know it was the sample module. Now this should clear git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@916 726aef4b-f618-498e-8847-2d620e286838 --- modules/sample.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sample.cpp b/modules/sample.cpp index 8b65205d..77806ea6 100644 --- a/modules/sample.cpp +++ b/modules/sample.cpp @@ -167,7 +167,7 @@ public: virtual EModRet OnUserMsg(CString& sTarget, CString& sMessage) { PutModule("[" + sTarget + "] usermsg [" + sMessage + "]"); - sMessage = "\0034" + sMessage + "\003"; + sMessage = "Sample: \0034" + sMessage + "\003"; return CONTINUE; }