Changeset 6488
- Timestamp:
- 12/24/2007 03:14:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/gettext.php
r5266 r6488 115 115 $this->STREAM = $Reader; 116 116 $magic = $this->readint(); 117 if ($magic == ($MAGIC1 & 0xFFFFFFFF) || $magic == ($MAGIC3 & 0xFFFFFFFF)) { // to make sure it works for 64-bit platforms117 if ($magic == $MAGIC1 || $magic == $MAGIC3) { // to make sure it works for 64-bit platforms 118 118 $this->BYTEORDER = 0; 119 119 } elseif ($magic == ($MAGIC2 & 0xFFFFFFFF)) {
Note: See TracChangeset
for help on using the changeset viewer.