PHP 5 fix from http://www.fredfred.net/skriker/index.php?p=84
There be dragons here git-svn-id: http://svn.automattic.com/wordpress/trunk@1779 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4af875d28f
commit
2dc5c6115a
|
@ -53,8 +53,10 @@ class gettext_reader {
|
|||
return;
|
||||
}
|
||||
|
||||
$MAGIC1 = (int)0x950412de;
|
||||
$MAGIC2 = (int)0xde120495;
|
||||
// $MAGIC1 = (int)0x950412de; //bug in PHP 5
|
||||
$MAGIC1 = (int) - 1794895138;
|
||||
// $MAGIC2 = (int)0xde120495; //bug
|
||||
$MAGIC2 = (int) - 569244523;
|
||||
|
||||
|
||||
$this->STREAM = $Reader;
|
||||
|
|
Loading…
Reference in New Issue