Index: trunk/extensions/CreatePage/CreatePage.php |
— | — | @@ -54,6 +54,7 @@ |
55 | 55 | $html = Html::openElement( 'form', array( |
56 | 56 | 'action' => SpecialPage::getTitleFor( 'CreatePage' )->getLocalURL(), |
57 | 57 | 'method' => 'post', |
| 58 | + 'style' => 'display: inline', |
58 | 59 | ) ); |
59 | 60 | |
60 | 61 | $html .= Html::input( |
— | — | @@ -75,8 +76,8 @@ |
76 | 77 | |
77 | 78 | $html .= '</form>'; |
78 | 79 | |
79 | | - return array( $html, 'isHTML' => true ); |
| 80 | + return $parser->insertStripItem( $html ); |
80 | 81 | }, SFH_OBJECT_ARGS ); |
81 | | - |
| 82 | + |
82 | 83 | return true; |
83 | 84 | }; |