From a766b9544b296336479fdf27ec2cebee87a1568f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 15 Sep 2005 23:42:29 +0000 Subject: [PATCH] Reference passing fix from jsteidl. fixes #1676 git-svn-id: https://develop.svn.wordpress.org/trunk@2882 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/gettext.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wp-includes/gettext.php b/wp-includes/gettext.php index 45af0f6572..ad605cfded 100644 --- a/wp-includes/gettext.php +++ b/wp-includes/gettext.php @@ -61,12 +61,15 @@ class gettext_reader { * @return Integer from the Stream */ function readint() { + $stream = $this->STREAM->read(4); if ($this->BYTEORDER == 0) { // low endian - return array_shift(unpack('V', $this->STREAM->read(4))); + $unpacked = unpack('V',$stream); + return array_shift($unpacked); } else { // big endian - return array_shift(unpack('N', $this->STREAM->read(4))); + $unpacked = unpack('N',$stream); + return array_shift($unpacked); } }