- Fix TNEF implementation bug (#1485773)
| | |
| | | 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) |
| | | |
| | |
| | | |
| | | function tnef_decode_attribute($attribute, &$buf) |
| | | { |
| | | global $debug, $download; |
| | | global $debug; |
| | | |
| | | $length = tnef_geti32($buf); |
| | | $value = tnef_getx($length, $buf); //data |
| | |
| | | switch($attribute) |
| | | { |
| | | case TNEF_BODYTEXT: |
| | | if (!$download) |
| | | if ($debug) |
| | | { |
| | | printf("<b>Embedded message:</b><pre>%s</pre>",$value); |
| | | } |