diff --git a/brmd/brmd.pl b/brmd/brmd.pl index 096bf84..72a61aa 100755 --- a/brmd/brmd.pl +++ b/brmd/brmd.pl @@ -554,9 +554,9 @@ sub irc_public { if (!$pod->error) { foreach my $subpod (@{$pod->subpods}) { if ($subpod->plaintext) { - $answer += ($pod->title . ': ') if $pod->title; - $answer += ($subpod->title . ': ') if $subpod->title; - $answer += ($subpod->plaintext . "\n"); + $answer .= ($pod->title . ': ') if $pod->title; + $answer .= ($subpod->title . ': ') if $subpod->title; + $answer .= ($subpod->plaintext . "\n"); } } }