Index: trunk/extensions/Translate/SpecialImportTranslations.php |
— | — | @@ -121,7 +121,7 @@ |
122 | 122 | Xml::hidden( 'title', $this->getTitle()->getPrefixedText() ) . |
123 | 123 | Xml::openElement( 'table' ) . |
124 | 124 | Xml::openElement( 'tr' ) . |
125 | | - Xml::openElement( 'td' ); |
| 125 | + Xml::openElement( 'td' ) |
126 | 126 | ); |
127 | 127 | |
128 | 128 | $class = array( 'class' => 'mw-translate-import-inputs' ); |
— | — | @@ -134,7 +134,7 @@ |
135 | 135 | Xml::input( 'upload-url', 50, |
136 | 136 | $this->request->getText( 'upload-url' ), |
137 | 137 | array( 'id' => 'mw-translate-up-url-input' ) + $class ) . |
138 | | - "\n" . . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ) . |
| 138 | + "\n" . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ) . |
139 | 139 | Xml::openElement( 'tr' ) . Xml::openElement( 'td' ) . "\n" |
140 | 140 | ); |
141 | 141 | } |
— | — | @@ -147,7 +147,7 @@ |
148 | 148 | Xml::input( 'upload-wiki', 50, |
149 | 149 | $this->request->getText( 'upload-wiki', 'File:' ), |
150 | 150 | array( 'id' => 'mw-translate-up-wiki-input' ) + $class ) . |
151 | | - "\n" . . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ) . |
| 151 | + "\n" . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ) . |
152 | 152 | Xml::openElement( 'tr' ) . Xml::openElement( 'td' ) . "\n" . |
153 | 153 | Xml::radioLabel( wfMsg( 'translate-import-from-local' ), |
154 | 154 | 'upload-type', 'local', 'mw-translate-up-local', |
— | — | @@ -156,7 +156,7 @@ |
157 | 157 | Xml::input( 'upload-local', 50, |
158 | 158 | $this->request->getText( 'upload-local' ), |
159 | 159 | array( 'type' => 'file', 'id' => 'mw-translate-up-local-input' ) + $class ) . |
160 | | - "\n" . . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ) . |
| 160 | + "\n" . Xml::closeElement( 'td' ) . Xml::closeElement( 'tr' ) . |
161 | 161 | Xml::closeElement( 'table' ) . |
162 | 162 | Xml::submitButton( wfMsg( 'translate-import-load' ) ) . |
163 | 163 | Xml::closeElement( 'form' ) |