Skip to content

Commit

Permalink
actually use the variable we cached
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 10, 2014
1 parent a43025d commit 4ae9a4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/Imap_Client/lib/Horde/Imap/Client/Socket.php
Expand Up @@ -4697,7 +4697,7 @@ protected function _responseCode(
/* Store valid search charsets if returned by server. */
$s = $this->search_charset;
foreach ($rc->data[0] as $val) {
$this->search_charset->setValid($val, true);
$s->setValid($val, true);
}

throw new Horde_Imap_Client_Exception_ServerResponse(
Expand Down
2 changes: 1 addition & 1 deletion framework/Imap_Client/lib/Horde/Imap/Client/Url/Pop3.php
Expand Up @@ -49,7 +49,7 @@ public function __toString()
$url = 'pop://' . parent::__toString();

if (($port = $this->port) != 110) {
$url .= ':' . $this->port;
$url .= ':' . $port;
}

return $url . '/';
Expand Down

0 comments on commit 4ae9a4d

Please sign in to comment.