1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Minor, fix an issue where we may fail to select a translation for mail.

This commit is contained in:
epriestley 2012-07-02 07:17:56 -07:00
parent fc45398ba9
commit 16c20c92fe

View file

@ -138,6 +138,11 @@ final class PhabricatorMetaMTAMail extends PhabricatorMetaMTADAO {
}
$return = $translation;
}
if (!$return) {
$return = $default_translation;
}
return $return;
}