From e0881f4aef8207bc64ed62dc25f1218c71c9226a Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 5 Dec 2008 00:46:28 -0700 Subject: [PATCH] Fix typo. --- imp/lib/IMP.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imp/lib/IMP.php b/imp/lib/IMP.php index fe6b48601..3640d84b0 100644 --- a/imp/lib/IMP.php +++ b/imp/lib/IMP.php @@ -1069,16 +1069,16 @@ class IMP ); } if ($GLOBALS['prefs']->getValue('use_smime')) { - $enc_opts = array( + $enc_opts = array_merge($enc_opts, array( self::SMIME_ENCRYPT => _("S/MIME Encrypt Message"), self::SMIME_SIGN => _("S/MIME Sign Message"), self::SMIME_SIGNENC => _("S/MIME Sign/Encrypt Message") - ); + )); } $enc_opts = array_merge(array(self::ENCRYPT_NONE => _("No Encryption")), $enc_opts); - foreach ($enc_options as $key => $val) { + foreach ($enc_opts as $key => $val) { $output .= '' . "\n"; } -- 2.11.0