Zend Framework gettext Bugfix

Since we are using Zend Frameworks “Gettext” Adapter for our multilanguage Support, we have found a bug when using it on a 64bit Processors which prevents the import of language files.

This is the official Bugfix for this issue:

Replace the Lines 97-99 from gettext.php with

if (substr(dechex($input[1]), -8) == “950412de” ) {
$this->_bigEndian = false;
} elseif (substr(dechex($input[1]), -8) == “de120495″) {

The complete bugreport can be found here.

Einen Kommentar schreiben