From 82d35df0b66c670663108062a357768387a29578 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Wed, 12 Jul 2006 18:38:25 +0000 Subject: [PATCH] Strict Standards with PHP5 --- includes/ImageGallery.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/ImageGallery.php b/includes/ImageGallery.php index 0935ac30ef..ae2e4a7098 100644 --- a/includes/ImageGallery.php +++ b/includes/ImageGallery.php @@ -55,7 +55,7 @@ class ImageGallery * * @param $skin Skin object */ - function useSkin( &$skin ) { + function useSkin( $skin ) { $this->mSkin =& $skin; } @@ -135,7 +135,7 @@ class ImageGallery function toHTML() { global $wgLang, $wgIgnoreImageErrors, $wgGenerateThumbnailOnParse; - $sk =& $this->getSkin(); + $sk = $this->getSkin(); $s = ''; if( $this->mCaption ) -- 2.20.1