Remove the fix for T205330
Once 22 days have expired from the 1.32.0-wmf.22 deploy we should remove from operations-mediawiki-config.
I.E. After 8pm UTC on Friday the 11Oct. Or more sensibly during the week of October 15th.
// T205330: Purge wikidatawiki parser output from before 2018-09-19 20:00 if ( $wgDBname === 'wikidatawiki' ) { $wgHooks['RejectParserCacheValue'][] = function ( $value, $wikiPage, $popts ) { if ( $value->expired( '20180919200000' ) ) { return false; } return true; }; }