Index: trunk/extensions/Translate/specials/SpecialLanguageStats.php |
— | — | @@ -303,12 +303,10 @@ |
304 | 304 | } |
305 | 305 | } else { |
306 | 306 | list( $fuzzy, $translated, $total ) = $this->loadPercentages( $cache, $g, $code ); |
| 307 | + $this->totals[2] += $total; |
| 308 | + $this->totals[1] += $translated; |
| 309 | + $this->totals[0] += $fuzzy; |
307 | 310 | } |
308 | | - |
309 | | - $this->totals[2] += $total; |
310 | | - $this->totals[1] += $translated; |
311 | | - $this->totals[0] += $fuzzy; |
312 | | - |
313 | 311 | if ( $total == 0 ) { |
314 | 312 | $zero = serialize( $total ); |
315 | 313 | error_log( __METHOD__ . ": Group $groupName has zero message ($code): $zero" ); |