remove probably wrong assumption on missing ident_id of mailaccount object (as it should not be missing at all)

This commit is contained in:
Klaus Leithoff 2015-02-19 12:26:44 +00:00
parent acb4f11d24
commit c67ab8744a

View File

@ -1025,7 +1025,7 @@ class mail_compose
// fetch the signature, prepare the select box, ... // fetch the signature, prepare the select box, ...
if (empty($content['mailidentity'])) { if (empty($content['mailidentity'])) {
$content['mailidentity'] = $acc['ident_id']?$acc['ident_id']:$acc['acc_id']; $content['mailidentity'] = $acc['ident_id'];
} }
$disableRuler = false; $disableRuler = false;