Can't pass function return to array_shift.

git-svn-id: https://develop.svn.wordpress.org/trunk@4554 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-11-30 07:30:11 +00:00
parent 798f6dd0d2
commit 44e40092d5
1 changed files with 4 additions and 2 deletions

View File

@ -63,10 +63,12 @@ class gettext_reader {
function readint() {
if ($this->BYTEORDER == 0) {
// low endian
return array_shift(unpack('V', $this->STREAM->read(4)));
$low_end = unpack('V', $this->STREAM->read(4));
return array_shift($low_end);
} else {
// big endian
return array_shift(unpack('N', $this->STREAM->read(4)));
$big_end = unpack('N', $this->STREAM->read(4));
return array_shift($big_end);
}
}