aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_mail.inc.php
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2006-05-26 15:51:36 +0000
committerchrisaga <chrisaga@piwigo.org>2006-05-26 15:51:36 +0000
commitc231fa52ff15f014ed073d5d2edeca2edb6fc859 (patch)
tree7490f42e41790cf620ab6ebd362a186f0d40d03f /include/functions_mail.inc.php
parent813f919b052b18a0efd16f733e8233e293cd4927 (diff)
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
Diffstat (limited to 'include/functions_mail.inc.php')
-rw-r--r--include/functions_mail.inc.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php
index 06d4d3e2d..86ded9473 100644
--- a/include/functions_mail.inc.php
+++ b/include/functions_mail.inc.php
@@ -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 = '')
}
}
-?> \ No newline at end of file
+?>