Last modified: 2007-12-18 21:00:05 UTC
In config/index.php please compact \$configdate = gmdate( 'YmdHis', @filemtime( __FILE__ ) ); \$wgCacheEpoch = max( \$wgCacheEpoch, \$configdate ); to become just \$wgCacheEpoch = max( \$wgCacheEpoch, gmdate( 'YmdHis', @filemtime( __FILE__ ) ) ); as there is little point in using the extra variable "$configdate".
Done in r28641.