Index: trunk/extensions/CodeReview/ui/CodeRevisionView.php |
— | — | @@ -341,14 +341,17 @@ |
342 | 342 | array_map( |
343 | 343 | array( $this, 'formatTag' ), |
344 | 344 | $tags ) |
345 | | - ) . ' '; |
| 345 | + ) . '<br/>'; |
346 | 346 | } |
347 | 347 | if ( $wgUser->isAllowed( 'codereview-add-tag' ) ) { |
| 348 | + $list .= Xml::inputLabel( wfMsg( 'code-rev-tag-add' ), 'wpTag', 'wpTag', 20, |
| 349 | + self::listTags( $this->mAddTags ) ); |
348 | 350 | $list .= Xml::Element( 'span', array( |
349 | 351 | 'id' => "codereview-add-tag", |
350 | 352 | 'title' => wfMsg( 'code-rev-tag-addtag-tooltip' ), |
351 | 353 | ), '+' ); // TODO: replace '+' with a message |
352 | | - $list .= $this->addTagForm( $this->mAddTags, $this->mRemoveTags ); |
| 354 | + //old tag form: |
| 355 | + //$list .= $this->addTagForm( $this->mAddTags, $this->mRemoveTags ); |
353 | 356 | } |
354 | 357 | return $list; |
355 | 358 | } |