Some message caches are over 1MB
This commit is contained in:
parent
deea6058b4
commit
5e60b97c3f
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ class MessageCache {
|
|||
$localHash = fread( $file, 32 );
|
||||
if ( $hash == $localHash ) {
|
||||
// All good, get the rest of it
|
||||
$serialized = fread( $file, 1000000 );
|
||||
$serialized = fread( $file, 10000000 );
|
||||
$this->mCache = unserialize( $serialized );
|
||||
}
|
||||
fclose( $file );
|
||||
|
|
|
|||
Loading…
Reference in a new issue