diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2014-12-27 15:41:37 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2014-12-31 11:43:28 +0100 |
commit | c1f9b1f7b1b77776192048005dcc66dcf3df2bfb (patch) | |
tree | 2b38796e738dd74cb42ecd9bfd151803108386bc /includes/actions/EditAction.php | |
parent | b88ab0086858470dd1f644e64cb4e4f62bb2be9b (diff) |
Update to MediaWiki 1.24.1
Diffstat (limited to 'includes/actions/EditAction.php')
-rw-r--r-- | includes/actions/EditAction.php | 38 |
1 files changed, 9 insertions, 29 deletions
diff --git a/includes/actions/EditAction.php b/includes/actions/EditAction.php index 3dd4c483..88767244 100644 --- a/includes/actions/EditAction.php +++ b/includes/actions/EditAction.php @@ -1,6 +1,6 @@ <?php /** - * action=edit / action=submit handler + * action=edit handler * * Copyright © 2012 Timo Tijhof * @@ -26,8 +26,7 @@ /** * Page edition handler * - * This is a wrapper that will call the EditPage class, or ExternalEdit - * if $wgUseExternalEditor is set to true and requested by the user. + * This is a wrapper that will call the EditPage class or a custom editor from an extension. * * @ingroup Actions */ @@ -42,6 +41,13 @@ class EditAction extends FormlessAction { } public function show() { + if ( $this->getContext()->getConfig()->get( 'UseMediaWikiUIEverywhere' ) ) { + $out = $this->getOutput(); + $out->addModuleStyles( array( + 'mediawiki.ui.input', + 'mediawiki.ui.checkbox', + ) ); + } $page = $this->page; $user = $this->getUser(); @@ -49,31 +55,5 @@ class EditAction extends FormlessAction { $editor = new EditPage( $page ); $editor->edit(); } - } - -} - -/** - * Edit submission handler - * - * This is the same as EditAction; except that it sets the session cookie. - * - * @ingroup Actions - */ -class SubmitAction extends EditAction { - - public function getName() { - return 'submit'; - } - - public function show() { - if ( session_id() == '' ) { - // Send a cookie so anons get talk message notifications - wfSetupSession(); - } - - parent::show(); - } - } |