aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar danieldg2009-10-18 01:40:11 +0000
committerGravatar danieldg2009-10-18 01:40:11 +0000
commit95c1fb9bdd5f93cf4f8306a7b8ae9ca098aade1a (patch)
treeceed823e5fff90d67501f6537ea0270bd9d4adb3 /src/modules
parentFix channel mode +H to allow maximum length and add explanatory message prefix (diff)
downloadinspircd++-95c1fb9bdd5f93cf4f8306a7b8ae9ca098aade1a.tar.gz
inspircd++-95c1fb9bdd5f93cf4f8306a7b8ae9ca098aade1a.tar.bz2
inspircd++-95c1fb9bdd5f93cf4f8306a7b8ae9ca098aade1a.zip
Change to Duration for second param
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11898 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_chanhistory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chanhistory.cpp b/src/modules/m_chanhistory.cpp
index 0e5bfd082..d987fee1e 100644
--- a/src/modules/m_chanhistory.cpp
+++ b/src/modules/m_chanhistory.cpp
@@ -44,7 +44,7 @@ class HistoryMode : public ModeHandler
if (colon == std::string::npos)
return MODEACTION_DENY;
int len = atoi(parameter.substr(0, colon).c_str());
- int time = atoi(parameter.substr(colon+1).c_str());
+ int time = ServerInstance->Duration(parameter.substr(colon+1));
if (len <= 0 || time < 0 || len > 50)
return MODEACTION_DENY;
ext.set(channel, new HistoryList(len, time));