Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz authored and mrubinsk committed Oct 1, 2013
1 parent 2a8159f commit 0f165a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php
Expand Up @@ -1016,7 +1016,7 @@ protected function _buildMailMessage(
if ($version >= Horde_ActiveSync::VERSION_FOURTEEN && !empty($options['bodyprefs']['preview'])) {
$eas_message->airsyncbasebody->preview =
$message_body_data['plain']['body']->rewind();
$message_body_data['plain']['body']->read(null, $options['bodyprefs']['preview']);
$message_body_data['plain']['body']->getString(null, $options['bodyprefs']['preview']);
}

// Check for special message types.
Expand Down
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Rfc822.php
Expand Up @@ -106,7 +106,7 @@ public function getString()
public function getHeaders()
{
$this->_stream->rewind();
$this->_stream->getStream(null, $this->_hdr_pos);
$this->_stream->getString(null, $this->_hdr_pos);
return Horde_Mime_Headers::parseHeaders($hdr_text);
}

Expand Down

0 comments on commit 0f165a8

Please sign in to comment.