Fix missing doublecheck icon on Special:Notifications on mobile

Bug: T146706
Change-Id: I918beabb1bcbe4a66c4252a795d379e2ff6591a9
This commit is contained in:
Roan Kattouw 2016-11-23 16:31:23 -08:00
parent aa700a75e5
commit ed613f2e26

View file

@ -193,7 +193,12 @@ class SpecialNotifications extends SpecialPage {
$out->addModules( array( 'ext.echo.special' ) );
// For no-js support
$out->addModuleStyles( array( 'ext.echo.styles.notifications', 'ext.echo.styles.special' ) );
$out->addModuleStyles( array(
'ext.echo.styles.notifications',
'ext.echo.styles.special',
// We already load badgeicons in the BeforePageDisplay hook, but not for minerva
'ext.echo.badgeicons'
) );
// Log visit
MWEchoEventLogging::logSpecialPageVisit( $user, $out->getSkin()->getSkinName() );