after the rtl-problem (textdirection right-to-left) we now have a
ltr-problem (left-to-right) since the last version *g*
this problem is fixed in the next version
quick fix
in vbsoccer.php search:
PHP Code:
if ($textdirection == 'rtl')
{
$selectSql = "u.`userid`, u.`username`, b.`bet_home`, b.`bet_away`, CONCAT_WS(':', `bet_home`, `bet_away`) AS userbet, ";
}
else
{
$selectSql = "u.`userid`, u.`username`, b.`bet_home`, b.`bet_away`, CONCAT_WS(':', `bet_away`, `bet_home`) AS userbet, ";
}
and replace with:
PHP Code:
if ($textdirection == 'rtl')
{
$selectSql = "u.`userid`, u.`username`, b.`bet_home`, b.`bet_away`, CONCAT_WS(':', `bet_away`, `bet_home`) AS userbet, ";
}
else
{
$selectSql = "u.`userid`, u.`username`, b.`bet_home`, b.`bet_away`, CONCAT_WS(':', `bet_home`, `bet_away`) AS userbet, ";
}
sorry. I will improve myself