Index: trunk/extensions/CodeReview/ui/CodeRevisionListView.php |
— | — | @@ -227,14 +227,14 @@ |
228 | 228 | $name = $this->mRepo->getName(); |
229 | 229 | |
230 | 230 | $title = SpecialPage::getTitleFor( 'Code', $name ); |
231 | | - $options = array(Xml::option('', $title, $this->mStatus == '' ) ); |
| 231 | + $options = array( Xml::option( '', $title->getPrefixedText(), $this->mStatus == '' ) ); |
232 | 232 | |
233 | 233 | |
234 | | - foreach ($states as $key => $state) { |
| 234 | + foreach ( $states as $key => $state ) { |
235 | 235 | $title = SpecialPage::getTitleFor( 'Code', $name . "/status/$state" ); |
236 | 236 | $options[] = Xml::option( |
237 | | - wfMsgHtml( "code-status-".$state ), |
238 | | - $title, |
| 237 | + wfMsgHtml( "code-status-$state" ), |
| 238 | + $title->getPrefixedText(), |
239 | 239 | $this->mStatus == $state |
240 | 240 | ); |
241 | 241 | } |