
minuteelectron at svn
May 11, 2008, 10:21 AM
Post #1 of 1
(12 views)
Permalink
|
|
SVN: [34620] trunk/phase3/includes/filerepo/FileRepoStatus.php
|
|
Revision: 34620 Author: minuteelectron Date: 2008-05-11 17:21:10 +0000 (Sun, 11 May 2008) Log Message: ----------- Remove paramter that only appears to illustrate the fact more parameters can be added and causes an E_STRICT level error. Modified Paths: -------------- trunk/phase3/includes/filerepo/FileRepoStatus.php Modified: trunk/phase3/includes/filerepo/FileRepoStatus.php =================================================================== --- trunk/phase3/includes/filerepo/FileRepoStatus.php 2008-05-11 17:15:15 UTC (rev 34619) +++ trunk/phase3/includes/filerepo/FileRepoStatus.php 2008-05-11 17:21:10 UTC (rev 34620) @@ -7,7 +7,7 @@ /** * Factory function for fatal errors */ - static function newFatal( $repo, $message /*, parameters...*/ ) { + static function newFatal( $repo /*, parameters...*/ ) { $params = array_slice( func_get_args(), 1 ); $result = new self( $repo ); call_user_func_array( array( &$result, 'error' ), $params ); _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS[at]lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
|