From: Bryan Tong Minh Date: Sun, 18 Oct 2009 20:06:22 +0000 (+0000) Subject: Followup to r57868: Fix two strict standards warnings X-Git-Tag: 1.31.0-rc.0~39240 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=9cec21147ecc0a2e4ba96af1dd07c2b52cfa3a65;p=lhc%2Fweb%2Fwiklou.git Followup to r57868: Fix two strict standards warnings --- 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();