Hi Kevin
The error is an incorrect syntax in the update process (started the quotes but not ending the quotes for desc) - see line 188 (approx) under function list_update()
$kiwee->db->upd($kiwee->config['fpx'], 'lists', 'name="' . $name . '", description="' . $desc, 'id=' . $id);
should be
$kiwee->db->upd($kiwee->config['fpx'], 'lists', 'name="' . $name . '", description="' . $desc . '"', 'id=' . $id);
Richard