From 6efff7c402f81707af0399da56c56b1497da5835 Mon Sep 17 00:00:00 2001 From: sebastinas Date: Thu, 24 Sep 2009 10:24:17 +0000 Subject: [PATCH] admin: Fix the output of "help". git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1633 726aef4b-f618-498e-8847-2d620e286838 --- modules/admin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/admin.cpp b/modules/admin.cpp index 4d2d4c6c..a12f5105 100644 --- a/modules/admin.cpp +++ b/modules/admin.cpp @@ -36,9 +36,9 @@ class CAdminMod : public CModule { CmdTable.AddColumn("Description"); static const char* help[][3] = { {"Get", "variable [username]", "Prints the variable's value for the given or current user"}, - {"Set", "variable [username] value", "Sets the variable's value for the given or current user"}, + {"Set", "variable username value", "Sets the variable's value for the given user (use $me for the current user)"}, {"GetChan", "variable [username] chan", "Prints the variable's value for the given channel"}, - {"SetChan", "variable [username] chan value", "Sets the variable's value for the given channel"}, + {"SetChan", "variable username chan value", "Sets the variable's value for the given channel"}, {"ListUsers", "", "Lists users"}, {"AddUser", "username password [ircserver]", "Adds a new user"}, {"DelUser", "username", "Deletes a user"},