Last modified: 2012-08-14 12:01:19 UTC
After installing 1.10.0, I got errors about "array_slice" needing an array for argument 1 in Language.php line 1139. I applied this patch which seems to be the intent and it goes away.
I can't see the attachment, but I presume it is there. Just in case: --- /home/spencer/sandbox/mediawiki-1.10.0/languages/Language.php 2007-04-19 15:47:04.000000000 -0300 +++ ./Language.php 2007-06-08 22:53:04.000000000 -0300 @@ -1134,9 +1134,10 @@ if( !is_array( $rawEntry ) ) { error_log( "\"$rawEntry\" is not a valid magic thingie for \"$mw->mId\"" ); - } - $mw->mCaseSensitive = $rawEntry[0]; - $mw->mSynonyms = array_slice( $rawEntry, 1 ); + } else { + $mw->mCaseSensitive = $rawEntry[0]; + $mw->mSynonyms = array_slice( $rawEntry, 1 ); + } } /**
*** This bug has been marked as a duplicate of bug 10166 ***