Skip to content

Commit 6112ed3

Browse files
authored
Fix compatibility issue
1 parent 049d086 commit 6112ed3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ActiveCollab/EmailReplyExtractor/Extractor/iOSExtractor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ protected function processLines()
1515
// strip default signature
1616
if ($match_string) {
1717
list ($default_signature, $cut_line) = self::getLinesFromEnd(1);
18-
$default_signature = implode(null, $default_signature);
18+
$default_signature = implode('', $default_signature);
1919
if (preg_match('/' . $match_string . '/is', $default_signature)) {
2020
$this->body= array_splice($this->body, 0, $cut_line);
2121
}
2222
}
2323

2424
$this->stripSignature();
2525
}
26-
}
26+
}

0 commit comments

Comments
 (0)