Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
zendframework/zendframework#6775 - messageEOL should also be consid…
Browse files Browse the repository at this point in the history
…ered when it is set as an empty string
  • Loading branch information
Ocramius committed Dec 31, 2014
1 parent 53f6318 commit 7af9989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Mbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function getMessage($id)
'endPos' => $messagePos['end']
);

if ($this->messageEOL) {
if (isset($this->messageEOL)) {
$messageClassParams['EOL'] = $this->messageEOL;
}

Expand Down

0 comments on commit 7af9989

Please sign in to comment.