From 18a67e4a2a6131b9694b9bc960ba50c55a50a43e Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 19 Mar 2006 21:42:08 +0000 Subject: Don't permit non-opers to /NOTICE $* and /PRIVMSG $* :p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3740 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_privmsg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cmd_privmsg.cpp') diff --git a/src/cmd_privmsg.cpp b/src/cmd_privmsg.cpp index f5adf14d0..9ab0532c5 100644 --- a/src/cmd_privmsg.cpp +++ b/src/cmd_privmsg.cpp @@ -70,7 +70,7 @@ void cmd_privmsg::Handle (char **parameters, int pcnt, userrec *user) if (ServerInstance->Parser->LoopCall(this,parameters,pcnt,user,0,pcnt-2,0)) return; - if (parameters[0][0] == '$') + if ((parameters[0][0] == '$') && (*user->oper)) { // notice to server mask char* servermask = parameters[0]; -- cgit v1.2.3