Mark Bergsma wrote:
Brion Vibber wrote:
That doesn't make sense; those are circumstances where the file cache would *never* be used. Can you confirm?
Well the only place I found a call to Article::tryFileCache, was within an if ( !is_null( $oldid )...
This looks like a typo. It used to be:
if ( !isset( $oldid ) and $this->checkTouched() ) {
Change it to:
if ( empty( $oldid ) and $this->checkTouched() ) {
and let me know how it works.
-- brion vibber (brion @ pobox.com)