? translations
Index: simplenews.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplenews/simplenews.module,v
retrieving revision 1.192
diff -u -p -r1.192 simplenews.module
--- simplenews.module	11 Jan 2009 11:47:30 -0000	1.192
+++ simplenews.module	11 Jan 2009 12:18:23 -0000
@@ -1507,16 +1507,16 @@ function simplenews_mail($key, &$message
           $term = taxonomy_get_term($tid);
           // Translate the newsletter term name if simplenews vocabulary uses Localized terms.
           if (module_exists('i18ntaxonomy') && i18ntaxonomy_vocabulary(variable_get('simplenews_vid', '')) == I18N_TAXONOMY_LOCALIZE) {
-            $name = check_plain(tt('taxonomy:term:'. $tid .':name', $term->name, $langcode));
+            $name = tt('taxonomy:term:'. $tid .':name', $term->name, $langcode);
           }
           else {
-            $name = check_plain($term->name);
+            $name = $term->name;
           }
         }
         else {
           $name = t('Unassigned newsletter');
         }
-        $subject = theme('simplenews_newsletter_subject', $name, check_plain($node->title), $message['language']);
+        $subject = theme('simplenews_newsletter_subject', $name, $node->title, $message['language']);
         $subject = str_replace(array("\r", "\n"), '', $subject);
         $message['subject'] = $messages[$nid][$langcode]['subject'] = $subject;
 
@@ -1934,7 +1934,7 @@ function _simplenews_set_from($node = NU
 
   return array(
     'address' => $address,
-    'formatted' => '"'. mime_header_encode(check_plain($name)) .'" <'. $address .'>',
+    'formatted' => '"'. mime_header_encode($name) .'" <'. $address .'>',
   );
 }
 
