]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - _darcs/pristine/actions/unblock.php
replace NULL with null
[quix0rs-gnu-social.git] / _darcs / pristine / actions / unblock.php
index d60cc7088595de49380f17a09635b989f58b2815..51ec0ae57287b191f4df4d34b6163a8dd1c9a3da 100644 (file)
@@ -21,7 +21,7 @@ if (!defined('LACONICA')) { exit(1); }
 
 class UnblockAction extends Action {
 
-    var $profile = NULL;
+    var $profile = null;
 
     function prepare($args) {
 
@@ -32,12 +32,12 @@ class UnblockAction extends Action {
             return false;
         }
 
-               $token = $this->trimmed('token');
+        $token = $this->trimmed('token');
 
-               if (!$token || $token != common_session_token()) {
-                       $this->client_error(_('There was a problem with your session token. Try again, please.'));
-                       return;
-               }
+        if (!$token || $token != common_session_token()) {
+            $this->client_error(_('There was a problem with your session token. Try again, please.'));
+            return;
+        }
 
         $id = $this->trimmed('unblockto');