MediaWiki  REL1_24
UnprotectAction.php
Go to the documentation of this file.
00001 <?php
00033 class UnprotectAction extends ProtectAction {
00034 
00035     public function getName() {
00036         return 'unprotect';
00037     }
00038 
00039     public function show() {
00040 
00041         $this->page->unprotect();
00042     }
00043 }