remove : calls to html_entity_decode() since we don't use html entities in l10n() any more (see bug 358)

git-svn-id: http://piwigo.org/svn/trunk@1321 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
chrisaga
2006-05-26 15:51:36 +00:00
parent 813f919b05
commit c231fa52ff

View File

@@ -122,10 +122,6 @@ function pwg_mail($to, $from = '', $subject = 'PhpWebGallery', $infos = '')
$content = $infos;
$content.= $conf_mail['text_footer'];
// Convert Text on HTML format to raw text format
$subject = html_entity_decode($subject);
$content = html_entity_decode($content);
if ($conf_mail['mail_options'])
{
$options = '-f '.$from;
@@ -138,4 +134,4 @@ function pwg_mail($to, $from = '', $subject = 'PhpWebGallery', $infos = '')
}
}
?>
?>