Index: trunk/extensions/ZeroRatedMobileAccess/ZeroRatedMobileAccess.body.php |
— | — | @@ -327,6 +327,7 @@ |
328 | 328 | } |
329 | 329 | |
330 | 330 | public function parseWikiTextToArray( Array $formatter, $wikiText, $nChild = false ) { |
| 331 | + wfProfileIn( __METHOD__ ); |
331 | 332 | $options = array(); |
332 | 333 | $data = explode( PHP_EOL, $wikiText ); |
333 | 334 | if ( is_array( $formatter ) && !$nChild ) { |
— | — | @@ -396,6 +397,7 @@ |
397 | 398 | } |
398 | 399 | } |
399 | 400 | } |
| 401 | + wfProfileOut( __METHOD__ ); |
400 | 402 | return $options; |
401 | 403 | } |
402 | 404 | |