bug 932: changed encoding function for subject
This commit is contained in:
parent
269829b175
commit
9987c02e3e
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ else {
|
|||
print " <tr>\n";
|
||||
print " <td><a href=\"" . $header->detailslink . "\">" . $header->fromaddress . "</a></td>";
|
||||
print " <td>" . $header->toaddress . "</td>";
|
||||
print " <td>" . htmlspecialchars(quoted_printable_decode($header->subject), ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8') . "</td>";
|
||||
print " <td>" . htmlspecialchars(iconv_mime_decode($header->subject, 'UTF-8'), ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8') . "</td>";
|
||||
print " <td>" . $header->date . "</td>";
|
||||
print " <td>" . $header->Size . "</td>";
|
||||
print " <td><a class=\"delete\" href=\"" . $header->deletelink . "\"><img src=\"/img/delete_icon.jpg\"></a></td>";
|
||||
|
|
Loading…
Reference in a new issue