line 44:
PHP Code:
$my_var = global $db;->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_DIRECTONE_ZONE . "' and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id");
change to:
PHP Code:
global $db;
$my_var = $db->Execute("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_DIRECTONE_ZONE . "' and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id");