Skip to content

Commit

Permalink
Fix saving public keys.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Nov 2, 2015
1 parent a8d1297 commit bf85fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/lib/Smime.php
Expand Up @@ -168,7 +168,7 @@ public function deletePersonalKeys()
*/
public function addPublicKey($cert)
{
list($name, $email) = $this->_smime->publicKeyInfo($cert);
list($name, $email) = $this->publicKeyInfo($cert);

$GLOBALS['registry']->call('contacts/addField', array($email, $name, self::PUBKEY_FIELD, $cert, $GLOBALS['prefs']->getValue('add_source')));
}
Expand Down

0 comments on commit bf85fce

Please sign in to comment.