Some message caches are over 1MB

This commit is contained in:
Tim Starling 2006-10-08 23:24:43 +00:00
parent deea6058b4
commit 5e60b97c3f

View file

@ -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 );