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".
Version: unspecified
Severity: trivial