Here's the fix. Line 55 of admin/dofeatures.php looks like this:

$ACTIVE_TEXT_LIST = $_POST['ACTIVE_TEXT_LIST'];

Right after that, add this:

PHP Code
if (get_magic_quotes_gpc) {
	$ACTIVE_TEXT_LIST = stripslashes($ACTIVE_TEXT_LIST);
}