Forums
(@slope)
20 years, 4 months ago
I’ve found easy solution –
just edit includes/gettext.php – find unpack(‘V’
change this array_shift(unpack('V', $this->STREAM->read(4))); to $tmp=unpack('V', $this->STREAM->read(4)); return array_shift($tmp);
array_shift(unpack('V', $this->STREAM->read(4)));
$tmp=unpack('V', $this->STREAM->read(4)); return array_shift($tmp);
It worked on my blog..