fix of small typo in function convert

This commit is contained in:
Klaus Leithoff 2007-10-12 11:10:25 +00:00
parent 1d7cb251f2
commit dbb80581b7

View File

@ -451,7 +451,7 @@
{
// iconv can not convert from/to utf7-imap
if ($to == 'utf7-imap' && function_exists(imap_utf7_encode)) {
$convertedData = iconv($from, 'iso-8859-1', $ata);
$convertedData = iconv($from, 'iso-8859-1', $data);
$convertedData = imap_utf7_encode($convertedData);
return $convertedData;