Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -359,7 +359,7 @@ |
360 | 360 | ); |
361 | 361 | foreach ( $cols ? $cols : array_keys( $th ) as $col ) { |
362 | 362 | if ( !isset( $row[$col] ) ) { |
363 | | - $v = isset( $r[$col] ) ? $parser->parse( $r[$col], $special, $options, true, true )->getText() : ' '; |
| 363 | + $v = isset( $r[$col] ) ? $wgParser->parse( $r[$col], $special, $wgParser->mOptions, true, true )->getText() : ' '; |
364 | 364 | $class = 'col' . preg_replace( '|\W|', '-', $col ); |
365 | 365 | $row[$col] = "<td class='$class'>$v</td>"; |
366 | 366 | } |