Index: branches/wmf/1.17wmf1/extensions/LocalisationUpdate/LocalisationUpdate.class.php |
— | — | @@ -160,7 +160,7 @@ |
161 | 161 | closedir( $dir ); |
162 | 162 | |
163 | 163 | // Find the changed English strings (as these messages won't be updated in ANY language). |
164 | | - $changedEnglishStrings = self::compareFiles( $localdir . '/MessagesEn.php', $svndir . '/MessagesEn.php', $verbose, true ); |
| 164 | + $changedEnglishStrings = self::compareFiles( $localdir . '/MessagesEn.php', $svndir . '/MessagesEn.php', $verbose ); |
165 | 165 | |
166 | 166 | // Count the changes. |
167 | 167 | $changedCount = 0; |
— | — | @@ -558,6 +558,9 @@ |
559 | 559 | continue; |
560 | 560 | } |
561 | 561 | |
| 562 | + if ( !isset( $compare_messages[$language] ) ) { |
| 563 | + $compare_messages[$language] = array(); |
| 564 | + } |
562 | 565 | // Add the already known messages to the array so we will only find new changes. |
563 | 566 | $compare_messages[$language] = array_merge( |
564 | 567 | $compare_messages[$language], |
Property changes on: branches/wmf/1.17wmf1/extensions/LocalisationUpdate |
___________________________________________________________________ |
Modified: svn:mergeinfo |
565 | 568 | Merged /trunk/extensions/LocalisationUpdate:r82448 |