Skip to content

Commit

Permalink
Merge pull request #11 from activecollab/bug/1137-nedostaje-getOrigin…
Browse files Browse the repository at this point in the history
…alMessageSplitters-funkcija-u-extractor-klasi

Replace missing function
  • Loading branch information
ilijastuden authored Jun 30, 2016
2 parents 06b7d28 + 11a1f04 commit c4a2be2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ final class ThunderBirdMailExtractor extends Extractor
*/
protected function processLines()
{
$splitters = $this->getOriginalMessageSplitters();
$splitters = $this->getAllMessageSplitters();

if (!empty($splitters)) {
$this->stripOriginalMessage($splitters);
Expand Down Expand Up @@ -37,9 +37,9 @@ protected function processLines()
*
* @return array
*/
protected function getOriginalMessageSplitters()
protected function getAllMessageSplitters()
{
return array_merge(parent::getOriginalMessageSplitters(), [
return array_merge(parent::getAllMessageSplitters(), [
'/\-------------------------/is',
]);
}
Expand Down

0 comments on commit c4a2be2

Please sign in to comment.