Skip to content

Commit

Permalink
Merge branch 'translationException' of git://github.com/baso10/horde …
Browse files Browse the repository at this point in the history
…into baso10-translationException
  • Loading branch information
slusarz committed Jul 23, 2015
2 parents 4e98b1b + 81d3969 commit c107fad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion framework/Imap_Client/lib/Horde/Imap/Client/Exception.php
Expand Up @@ -260,7 +260,9 @@ public function __construct($message = null, $code = null)
parent::__construct($message, $code);

$this->raw_msg = $this->message;
$this->message = Horde_Imap_Client_Translation::t($this->message);
try {
$this->message = Horde_Imap_Client_Translation::t($this->message);
} catch (Horde_Translation_Exception $e) {}
}

/**
Expand Down

0 comments on commit c107fad

Please sign in to comment.