vincent LARCHET - 2005-12-23

Logged In: YES
user_id=43277

Hi there,

there is another problem in method HessianParser.setStream:
change $this->len = strlen($stream);
TO
$this->len = mb_strlen($stream, 'latin1');
//counts the number of bytes, regardless of the internal
encoding (that would cause strlen if overriden to count the
number of chars...)

Bye

vincent