From bfaa111fa1aaf39485bd50f0141373dcb6798bef Mon Sep 17 00:00:00 2001 From: cweiske Date: Wed, 4 Nov 2009 21:34:08 +0000 Subject: fix php-gettext on 64 bit git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@514 b3834d28-1941-0410-a4f8-b48e95affb8f --- src/php-gettext/gettext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/php-gettext/gettext.php') diff --git a/src/php-gettext/gettext.php b/src/php-gettext/gettext.php index ad94a98..978794c 100644 --- a/src/php-gettext/gettext.php +++ b/src/php-gettext/gettext.php @@ -109,9 +109,9 @@ class gettext_reader { $this->STREAM = $Reader; $magic = $this->readint(); - if ($magic == $MAGIC1) { + if ($magic == $MAGIC1 || $magic == ($MAGIC1 & 0xFFFFFFFF)) { $this->BYTEORDER = 0; - } elseif ($magic == $MAGIC2) { + } elseif ($magic == $MAGIC2 || $magic == ($MAGIC2 & 0xFFFFFFFF)) { $this->BYTEORDER = 1; } else { $this->error = 1; // not MO file -- cgit v1.2.3