Index: trunk/phase3/skins/Vector.php |
— | — | @@ -424,7 +424,6 @@ |
425 | 425 | <div id="p-search"> |
426 | 426 | <h5<?php $this->html( 'userlangattributes' ) ?>><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h5> |
427 | 427 | <form action="<?php $this->text( 'wgScript' ) ?>" id="searchform"> |
428 | | - <input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/> |
429 | 428 | <?php if ( $wgVectorUseSimpleSearch && $this->getSkin()->getUser()->getOption( 'vector-simplesearch' ) ): ?> |
430 | 429 | <div id="simpleSearch"> |
431 | 430 | <?php if ( $this->data['rtl'] ): ?> |
— | — | @@ -434,12 +433,14 @@ |
435 | 434 | <?php if ( !$this->data['rtl'] ): ?> |
436 | 435 | <?php echo $this->makeSearchButton( 'image', array( 'id' => 'searchButton', 'src' => $this->getSkin()->getSkinStylePath( 'images/search-ltr.png' ) ) ); ?> |
437 | 436 | <?php endif; ?> |
438 | | - </div> |
439 | 437 | <?php else: ?> |
440 | | - <?php echo $this->makeSearchInput( array( 'id' => 'searchInput' ) ); ?> |
441 | | - <?php echo $this->makeSearchButton( 'go', array( 'id' => 'searchGoButton', 'class' => 'searchButton' ) ); ?> |
442 | | - <?php echo $this->makeSearchButton( 'fulltext', array( 'id' => 'mw-searchButton', 'class' => 'searchButton' ) ); ?> |
| 438 | + <div> |
| 439 | + <?php echo $this->makeSearchInput( array( 'id' => 'searchInput' ) ); ?> |
| 440 | + <?php echo $this->makeSearchButton( 'go', array( 'id' => 'searchGoButton', 'class' => 'searchButton' ) ); ?> |
| 441 | + <?php echo $this->makeSearchButton( 'fulltext', array( 'id' => 'mw-searchButton', 'class' => 'searchButton' ) ); ?> |
443 | 442 | <?php endif; ?> |
| 443 | + <input type='hidden' name="title" value="<?php $this->text( 'searchtitle' ) ?>"/> |
| 444 | + </div> |
444 | 445 | </form> |
445 | 446 | </div> |
446 | 447 | <?php |