In News.php
Find:
$positions = array(
$smcFunc['strpos']($data, '&', $pos),
$smcFunc['strpos']($data, ']', $pos),
);
Replace with:
$positions = array(
$smcFunc['strpos']($data, '&', $pos),
$smcFunc['strpos']($data, ']]>', $pos),
);
This will be fixed in the next release (2.0.17). You will have to revert this change to get 2.0.17 to apply cleanly.