2
hallo again, after digging out a lil bit i came across an include in common.php.
In common.php there is an inclusion of xlanguage/api.php which turns out to be the cause of the problem.
in api.php lines 95 and 97 is the following code
Quote:
ob_start("xlanguage_encoding");
}else{
ob_start("xlanguage_ml");
}
and thats where the whole thing was messing up.
What i did to fix this is...
on the begining of my function to show the data test() i added the following line
Quote:
now the data is showing as expected.
My question to this is: Is this the correct way of treating this error/bug??
Should this be happening? Is there another way, perhaps more optimized/correct to fix this?
Thanks