diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
commit | 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 (patch) | |
tree | 577a29fb579188d16003a209ce2a2e9c5b0aa2bd /includes/actions/ProtectAction.php | |
parent | cacc939b34e315b85e2d72997811eb6677996cc1 (diff) |
Update to MediaWiki 1.21.1
Diffstat (limited to 'includes/actions/ProtectAction.php')
-rw-r--r-- | includes/actions/ProtectAction.php | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/includes/actions/ProtectAction.php b/includes/actions/ProtectAction.php index f053ede7..ec6648e2 100644 --- a/includes/actions/ProtectAction.php +++ b/includes/actions/ProtectAction.php @@ -23,17 +23,24 @@ * @author Timo Tijhof */ +/** + * Handle page protection + * + * This is a wrapper that will call Article::protect(). + * + * @ingroup Actions + */ class ProtectAction extends FormlessAction { public function getName() { return 'protect'; } - public function onView(){ + public function onView() { return null; } - public function show(){ + public function show() { $this->page->protect(); @@ -41,13 +48,20 @@ class ProtectAction extends FormlessAction { } +/** + * Handle page unprotection + * + * This is a wrapper that will call Article::unprotect(). + * + * @ingroup Actions + */ class UnprotectAction extends ProtectAction { public function getName() { return 'unprotect'; } - public function show(){ + public function show() { $this->page->unprotect(); |