alecpl
2009-03-27 dadb05b0afc9a76d4f29a8d35bdf268aa20926df
- Fix TNEF implementation bug (#1485773)


2 files modified
5 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/lib/tnef_decoder.inc 4 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix TNEF implementation bug (#1485773)
- Fix incorrect row id parsing for LDAP contacts list (#1485784) 
- Fix 'mode' parameter in sqlite DSN (#1485772)
program/lib/tnef_decoder.inc
@@ -102,7 +102,7 @@
function tnef_decode_attribute($attribute, &$buf)
{
   global $debug, $download;
   global $debug;
   $length = tnef_geti32($buf);
   $value = tnef_getx($length, $buf); //data
@@ -116,7 +116,7 @@
   switch($attribute)
   {
      case TNEF_BODYTEXT:
         if (!$download)
         if ($debug)
         {
            printf("<b>Embedded message:</b><pre>%s</pre>",$value);
         }