SquidUpdate => CdnCacheUpdate

Change-Id: I67487909070cbdbfaa32fd249d5c4d7db560511d
This commit is contained in:
Aaron Schulz 2017-11-09 23:14:13 -08:00
parent a77b0770c9
commit 427933b6cb

View File

@ -363,7 +363,7 @@ class MathTexvc extends MathRenderer {
// If we're replacing an older version of the image, make sure it's current. // If we're replacing an older version of the image, make sure it's current.
if ( $updated && $wgUseSquid ) { if ( $updated && $wgUseSquid ) {
$urls = [ $this->getMathImageUrl() ]; $urls = [ $this->getMathImageUrl() ];
$u = new SquidUpdate( $urls ); $u = new CdnCacheUpdate( $urls );
$u->doUpdate(); $u->doUpdate();
} }