More bug fixes.

This commit is contained in:
Siebrand Mazeland 2009-11-06 17:16:43 +01:00
parent 814b513aa5
commit 023d5c17ab
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ foreach ($languages as $language) {
// Skip export of source language
// and duplicates
if( $code == 'en' || $code = 'no' ) {
if( $code == 'en' || $code == 'no' ) {
continue;
}
@ -69,7 +69,7 @@ foreach ($languages as $language) {
'title' => 'Special:Translate',
'task' => 'export-to-file',
'group' => 'out-statusnet',
'language' => $twcode));
'language' => $twnCode));
$lcdir = INSTALLDIR . '/locale/' . $code;
$msgdir = "$lcdir/LC_MESSAGES";