2015-10-28, 11:18 PM
I am working on a conversion of a board that uses IPB4 to MyBB. However, I have come across this when converting poll votes.
![[Image: 6GIjEqS.png]](https://camo.mybb.com/e989ea456d469aa5bba7f629248171afec0bc837/687474703a2f2f692e696d6775722e636f6d2f3647496a4571532e706e67)
The merge system reports no issues when converting any of the other items from IPB4.
So, an update. Seems there was a mistake in boards/ipb4/pollvotes.php:
The merge system reports no issues when converting any of the other items from IPB4.
So, an update. Seems there was a mistake in boards/ipb4/pollvotes.php:
$insert_array = $this->prepare_insert_array($insert_data. 'pollvotes');
Should have been:$insert_array = $this->prepare_insert_array($insert_data, 'pollvotes');
This issue has now been resolved.