Index: trunk/extensions/Translate/scripts/groupStatistics.php |
— | — | @@ -285,6 +285,8 @@ |
286 | 286 | |
287 | 287 | // Get list of valid groups |
288 | 288 | foreach ( $reqGroups as $id ) { |
| 289 | + // Page translation group ids use spaces which are not nice on command line |
| 290 | + $id = str_replace( '_', ' ', $id ); |
289 | 291 | if ( isset( $allGroups[$id] ) ) { |
290 | 292 | $groups[$id] = $allGroups[$id]; |
291 | 293 | } else { |