Changeset 4555
- Timestamp:
- 11/30/06 07:31:21 (2 years ago)
- Files:
-
- branches/2.0/wp-includes/gettext.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/gettext.php
r4004 r4555 64 64 if ($this->BYTEORDER == 0) { 65 65 // low endian 66 return array_shift(unpack('V', $this->STREAM->read(4))); 66 $low_end = unpack('V', $this->STREAM->read(4)); 67 return array_shift($low_end); 67 68 } else { 68 69 // big endian 69 return array_shift(unpack('N', $this->STREAM->read(4))); 70 $big_end = unpack('N', $this->STREAM->read(4)); 71 return array_shift($big_end); 70 72 } 71 73 }
