The problem is on line 324 of classes/WPeditor.php, they initiallize a variables as $data = ''; then attempt to use it as an array on line 333 causing an error in php 7.1 and causes multiple other problems with the plugin listing page. $data = ''; just needs changed to $data = array();