From 9cec21147ecc0a2e4ba96af1dd07c2b52cfa3a65 Mon Sep 17 00:00:00 2001 From: Bryan Tong Minh Date: Sun, 18 Oct 2009 20:06:22 +0000 Subject: [PATCH] Followup to r57868: Fix two strict standards warnings --- includes/Licenses.php | 2 +- includes/specials/SpecialUpload.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Licenses.php b/includes/Licenses.php index 4b81bfaead..b55dd1f564 100644 --- a/includes/Licenses.php +++ b/includes/Licenses.php @@ -86,7 +86,7 @@ class Licenses extends HTMLFormField { $position[] = $item; } - protected function makeHtml( &$tagset, $depth = 0 ) { + protected function makeHtml( $tagset, $depth = 0 ) { foreach ( $tagset as $key => $val ) if ( is_array( $val ) ) { $this->html .= $this->outputOption( diff --git a/includes/specials/SpecialUpload.php b/includes/specials/SpecialUpload.php index 713a6ff559..acd6797617 100644 --- a/includes/specials/SpecialUpload.php +++ b/includes/specials/SpecialUpload.php @@ -103,7 +103,7 @@ class SpecialUpload extends SpecialPage { /** * Special page entry point */ - public function execute() { + public function execute( $par ) { global $wgUser, $wgOut, $wgRequest; $this->setHeaders(); -- 2.20.1