diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-19 21:42:08 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-19 21:42:08 +0000 |
commit | 18a67e4a2a6131b9694b9bc960ba50c55a50a43e (patch) | |
tree | 2cfb54ddf2bcff064900ac84431807b0d05820e3 /src/cmd_privmsg.cpp | |
parent | cf5ee19bca635a8c8ec3ef962a94bbafc06776cd (diff) |
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
Diffstat (limited to 'src/cmd_privmsg.cpp')
-rw-r--r-- | src/cmd_privmsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |