gisco
This mod is not using ADODB it is using traditional mysql.
So the script would look like this.
Code:
mysql_query("set names 'utf8'",$con);
Find the connect sql lines .
Code:
$connected = mysql_connect($target_db_host, $target_db_username, $target_db_password);
And change to this.
Code:
$connected = mysql_connect($target_db_host, $target_db_username, $target_db_password);
mysql_query("set names 'utf8'",$con);
I have not tested let us know if this worked.