From 3d8bb2923ecc69077b9879b88611580398a48158 Mon Sep 17 00:00:00 2001 From: Arlo Breault Date: Sun, 24 Jan 2016 10:14:04 -0800 Subject: [PATCH] Fix typo Change-Id: Ifcea7b157dd1c22f45d03627c8bb0d42da548f79 --- includes/gallery/ImageGalleryBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/gallery/ImageGalleryBase.php b/includes/gallery/ImageGalleryBase.php index 9ea97029c3..f26d688ebe 100644 --- a/includes/gallery/ImageGalleryBase.php +++ b/includes/gallery/ImageGalleryBase.php @@ -91,8 +91,8 @@ abstract class ImageGalleryBase extends ContextSource { $context = RequestContext::getMainAndWarn( __METHOD__ ); } if ( !$mode ) { - $galleryOpions = $context->getConfig()->get( 'GalleryOptions' ); - $mode = $galleryOpions['mode']; + $galleryOptions = $context->getConfig()->get( 'GalleryOptions' ); + $mode = $galleryOptions['mode']; } $mode = $wgContLang->lc( $mode ); -- 2.20.1