In Exporter.php, this line
should actually be
(needed double quotes on the \t ....at least for vb 3 the vote options can contain a tab literal)
Code:
'response' => str_replace('\t', ' ', trim($option)),
should actually be
Code:
'response' => str_replace("\t", ' ', trim($option)),
(needed double quotes on the \t ....at least for vb 3 the vote options can contain a tab literal)