Changeset 5405fb1
- Timestamp:
- Sep 17, 2013, 9:41:55 PM (11 years ago)
- Children:
- 658421f
- Parents:
- 441fd42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
perl/modules/IRC/lib/BarnOwl/Module/IRC.pm
rbe43554 r5405fb1 644 644 my $chan = shift @ARGV or die("Usage: $cmd channel\n"); 645 645 646 die "Channel name '$chan' contains a space. As per RFC 2812, IRC channel names may not contain spaces.\n" unless index($chan nel, " ") == -1;646 die "Channel name '$chan' contains a space. As per RFC 2812, IRC channel names may not contain spaces.\n" unless index($chan, " ") == -1; 647 647 648 648 $conn->conn->send_msg(join => $chan, @ARGV);
Note: See TracChangeset
for help on using the changeset viewer.