]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/unblock.php
move opening brace of class declaration to next line
[quix0rs-gnu-social.git] / actions / unblock.php
index 51ec0ae57287b191f4df4d34b6163a8dd1c9a3da..112304f71b41331d4aba4b6fb56f4b99b776a306 100644 (file)
 
 if (!defined('LACONICA')) { exit(1); }
 
-class UnblockAction extends Action {
+class UnblockAction extends Action
+{
 
     var $profile = null;
 
-    function prepare($args) {
+    function prepare($args)
+    {
 
         parent::prepare($args);
 
@@ -56,14 +58,16 @@ class UnblockAction extends Action {
         return true;
     }
 
-    function handle($args) {
+    function handle($args)
+    {
         parent::handle($args);
         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
             $this->unblock_profile();
         }
     }
 
-    function unblock_profile() {
+    function unblock_profile()
+    {
 
         $cur = common_current_user();