- add missing function parameter to handle_command()
authorAndreas Scherbaum <andreas@scherbaum.biz>
Sun, 22 Jan 2012 12:25:41 +0000 (13:25 +0100)
committerAndreas Scherbaum <andreas@scherbaum.biz>
Sun, 22 Jan 2012 12:25:41 +0000 (13:25 +0100)
docbot.pl

index 4df50ad82f15877d058f51f8442b5ba3a82a0f5b..7c2e060a4d28b2583f02ac47688abc1ba08d0b11 100755 (executable)
--- a/docbot.pl
+++ b/docbot.pl
@@ -1331,7 +1331,7 @@ sub format_time_short_exact {
 #  - the full who of the message sender, including the nick name
 #  - the nick name of the message sender
 #  - the full origin of the message
-#  - the channel or nick name of the message origin
+#  - the message itself
 #  - POE sender
 #  - session irc handle
 #  - the channel name
@@ -1346,6 +1346,7 @@ sub handle_command {
     my $who = shift;
     my $nick = shift;
     my $where = shift;
+    my $msg = shift;
     my $sender = shift;
     my $irc = shift;
     my $channel = shift;