Don't use $HTTP_RAW_POST_DATA deprecated in PHP 5.6

pull/123/merge
Aleksander Machniak 11 years ago
parent fd4436475c
commit 60a67f52ad

@ -19,7 +19,7 @@
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
*/ */
$html = $HTTP_RAW_POST_DATA; $html = stream_get_contents(fopen('php://input', 'r'));
// Replace emoticon images with its text representation // Replace emoticon images with its text representation
$html = $RCMAIL->replace_emoticons($html); $html = $RCMAIL->replace_emoticons($html);

Loading…
Cancel
Save