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:27:29 +00:00
parent 8752f10877
commit 6691bdf7db

View File

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