Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -473,6 +473,8 @@ |
474 | 474 | * |
475 | 475 | * @param $text String: text extension wants to have parsed |
476 | 476 | * @param $frame PPFrame: The frame to use for expanding any template variables |
| 477 | + * |
| 478 | + * @return string |
477 | 479 | */ |
478 | 480 | function recursiveTagParse( $text, $frame=false ) { |
479 | 481 | wfProfileIn( __METHOD__ ); |
Index: trunk/extensions/SubPageList3/SubPageList3.php |
— | — | @@ -504,7 +504,7 @@ |
505 | 505 | wfProfileIn( __METHOD__ ); |
506 | 506 | $output = $this->parser->recursiveTagParse( $text ); |
507 | 507 | wfProfileOut( __METHOD__ ); |
508 | | - return $output->getText(); |
| 508 | + return $output; |
509 | 509 | } |
510 | 510 | |
511 | 511 | } |