Index: trunk/phase3/includes/SpecialBooksources.php |
— | — | @@ -58,10 +58,10 @@ |
59 | 59 | $form = '<fieldset><legend>' . wfMsgHtml( 'booksources-search-legend' ) . '</legend>'; |
60 | 60 | $form .= Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ); |
61 | 61 | $form .= Xml::hidden( 'title', $title->getPrefixedText() ); |
62 | | - $form .= '<p>' . Xml::inputLabel( wfMsg( 'booksources-isbn' ), 'isbn', 'isbn', false, $this->isbn ); |
| 62 | + $form .= '<p>' . Xml::inputLabel( wfMsg( 'booksources-isbn' ), 'isbn', 'isbn', 20, $this->isbn ); |
63 | 63 | $form .= ' ' . Xml::submitButton( wfMsg( 'booksources-go' ) ) . '</p>'; |
| 64 | + $form .= Xml::closeElement( 'form' ); |
64 | 65 | $form .= '</fieldset>'; |
65 | | - $form .= Xml::closeElement( 'form' ); |
66 | 66 | return $form; |
67 | 67 | } |
68 | 68 | |