Skip to content

Commit

Permalink
Use time delta when performing /topic
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@10103 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
rburchell committed Aug 5, 2008
1 parent 3851c93 commit 4dbef6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd_topic.cpp
Expand Up @@ -100,7 +100,7 @@ CmdResult cmd_topic::Handle (const char** parameters, int pcnt, userrec *user)
else
strlcpy(Ptr->setby,user->nick,127);

Ptr->topicset = ServerInstance->Time();
Ptr->topicset = ServerInstance->Time(true);
Ptr->WriteChannel(user, "TOPIC %s :%s", Ptr->name, Ptr->topic);

if (IS_LOCAL(user))
Expand Down

0 comments on commit 4dbef6a

Please sign in to comment.