Aleksander Machniak
2014-05-08 60a67f52ad0a23aef3d02e4e9abf28317e5b3144
Don't use $HTTP_RAW_POST_DATA deprecated in PHP 5.6
1 files modified
2 ■■■ changed files
program/steps/utils/html2text.inc 2 ●●● patch | view | raw | blame | history
program/steps/utils/html2text.inc
@@ -19,7 +19,7 @@
 +-----------------------------------------------------------------------+
*/
$html = $HTTP_RAW_POST_DATA;
$html = stream_get_contents(fopen('php://input', 'r'));
// Replace emoticon images with its text representation
$html = $RCMAIL->replace_emoticons($html);