We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 049d086 commit 6112ed3Copy full SHA for 6112ed3
src/ActiveCollab/EmailReplyExtractor/Extractor/iOSExtractor.php
@@ -15,12 +15,12 @@ protected function processLines()
15
// strip default signature
16
if ($match_string) {
17
list ($default_signature, $cut_line) = self::getLinesFromEnd(1);
18
- $default_signature = implode(null, $default_signature);
+ $default_signature = implode('', $default_signature);
19
if (preg_match('/' . $match_string . '/is', $default_signature)) {
20
$this->body= array_splice($this->body, 0, $cut_line);
21
}
22
23
24
$this->stripSignature();
25
26
- }
+ }
0 commit comments