summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2010-02-15 23:02:34 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2010-02-15 23:02:34 +0000
commit55808216a859688506a879f6197ca1abd2f51d1b (patch)
tree94ee12fa845be3f99505fa67fb150b4d4b152124 /src/commands
parentbf0dd0513e016abb4025748fe12e57539078c70b (diff)
Show opers the raw VERSION string, not the custom one
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12470 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/cmd_version.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_version.cpp b/src/commands/cmd_version.cpp
index b16107fd0..3064c9440 100644
--- a/src/commands/cmd_version.cpp
+++ b/src/commands/cmd_version.cpp
@@ -48,7 +48,7 @@ class CommandVersion : public Command
CmdResult CommandVersion::Handle (const std::vector<std::string>&, User *user)
{
- user->WriteNumeric(RPL_VERSION, "%s :%s",user->nick.c_str(),ServerInstance->GetVersionString().c_str());
+ user->WriteNumeric(RPL_VERSION, "%s :%s",user->nick.c_str(),ServerInstance->GetVersionString(IS_OPER(user)).c_str());
ServerInstance->Config->Send005(user);
return CMD_SUCCESS;
}