Last modified: 2007-12-01 15:36:06 UTC
checkLanguage.php in the /maintenance/language directory does no longer list translated messages that do not exist in the English message file. That check was useful so it should be restored.
Works for me in r25301.
After some testing I see that the check is performed when a language is specified by the --lang parameter, but not when using the default language from the wiki installation.
Ah ok, I never tried/used this before. Sorry for closing.
Created attachment 4072 [details] set default lang code before it is used The problem seems to be that the default language code is not set until after the code is used to get the messages. This patch for checkLanguage.inc moves the code that sets the default language and default checks to the beginning of the checkLanguage function, so that the language code is set when it is used to get messages.
Now this works again. I think it was revision 26721 by Nikerabbit that fixed the problem.