Index: trunk/phase3/includes/specials/SpecialFilepath.php |
— | — | @@ -78,10 +78,10 @@ |
79 | 79 | $this->getOutput()->addHTML( |
80 | 80 | Html::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'specialfilepath' ) ) . |
81 | 81 | Html::openElement( 'fieldset' ) . |
82 | | - Html::element( 'legend', null, wfMsg( 'filepath' ) ) . |
| 82 | + Html::element( 'legend', null, $this->msg( 'filepath' )->text() ) . |
83 | 83 | Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . |
84 | | - Xml::inputLabel( wfMsg( 'filepath-page' ), 'file', 'file', 25, is_object( $title ) ? $title->getText() : '' ) . ' ' . |
85 | | - Xml::submitButton( wfMsg( 'filepath-submit' ) ) . "\n" . |
| 84 | + Xml::inputLabel( $this->msg( 'filepath-page' )->text(), 'file', 'file', 25, is_object( $title ) ? $title->getText() : '' ) . ' ' . |
| 85 | + Xml::submitButton( $this->msg( 'filepath-submit' )->text() ) . "\n" . |
86 | 86 | Html::closeElement( 'fieldset' ) . |
87 | 87 | Html::closeElement( 'form' ) |
88 | 88 | ); |