Index: trunk/extensions/Translate/specials/SpecialLanguageStats.php |
— | — | @@ -321,6 +321,8 @@ |
322 | 322 | return $incache; |
323 | 323 | } |
324 | 324 | |
| 325 | + wfProfileIn( __METHOD__ ); |
| 326 | + |
325 | 327 | // Initialise messages. |
326 | 328 | $collection = $group->initCollection( $code ); |
327 | 329 | $collection->setInFile( $group->load( $code ) ); |
— | — | @@ -346,6 +348,8 @@ |
347 | 349 | $cache->commit(); |
348 | 350 | } |
349 | 351 | |
| 352 | + wfProfileOut( __METHOD__ ); |
| 353 | + |
350 | 354 | return $result; |
351 | 355 | } |
352 | 356 | |