mirror of
https://github.com/brmlab/brmdoor.git
synced 2025-06-07 19:24:01 +02:00
fix concatenation
This commit is contained in:
parent
5398773e1b
commit
fdac0b1044
1 changed files with 3 additions and 3 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue