]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
use return-to method for adminprofileflag
authorEvan Prodromou <evan@status.net>
Mon, 16 Nov 2009 16:55:00 +0000 (17:55 +0100)
committerEvan Prodromou <evan@status.net>
Mon, 16 Nov 2009 16:55:00 +0000 (17:55 +0100)
plugins/UserFlag/adminprofileflag.php

index 62948099107e8387d7879027a04c2db51a3aa65a..1ac76b506589125b3036c4a50fd1c2b5e09a51c8 100644 (file)
@@ -133,11 +133,16 @@ class FlaggedProfileList extends ProfileList {
 class FlaggedProfileListItem extends ProfileListItem
 {
     var $user = null;
+    var $r2args = null;
 
     function showActions()
     {
         $this->user = common_current_user();
 
+        list($action, $this->r2args) = $this->out->returnToArgs();
+
+        $this->r2args['action'] = $action;
+
         $this->startActions();
         if (Event::handle('StartProfileListItemActionElements', array($this))) {
             $this->showSandboxButton();
@@ -153,11 +158,11 @@ class FlaggedProfileListItem extends ProfileListItem
     {
         if ($this->user->hasRight(Right::SANDBOXUSER)) {
             $this->out->elementStart('li', 'entity_sandbox');
-            if ($this->user->isSandboxed()) {
-                $usf = new UnSandboxForm($this->out, $this->profile);
+            if ($this->profile->isSandboxed()) {
+                $usf = new UnSandboxForm($this->out, $this->profile, $this->r2args);
                 $usf->show();
             } else {
-                $sf = new SandboxForm($this->out, $this->profile);
+                $sf = new SandboxForm($this->out, $this->profile, $this->r2args);
                 $sf->show();
             }
             $this->out->elementEnd('li');
@@ -168,11 +173,11 @@ class FlaggedProfileListItem extends ProfileListItem
     {
         if ($this->user->hasRight(Right::SILENCEUSER)) {
             $this->out->elementStart('li', 'entity_silence');
-            if ($this->user->isSilenced()) {
-                $usf = new UnSilenceForm($this->out, $this->profile);
+            if ($this->profile->isSilenced()) {
+                $usf = new UnSilenceForm($this->out, $this->profile, $this->r2args);
                 $usf->show();
             } else {
-                $sf = new SilenceForm($this->out, $this->profile);
+                $sf = new SilenceForm($this->out, $this->profile, $this->r2args);
                 $sf->show();
             }
             $this->out->elementEnd('li');
@@ -184,7 +189,7 @@ class FlaggedProfileListItem extends ProfileListItem
 
         if ($this->user->hasRight(Right::DELETEUSER)) {
             $this->out->elementStart('li', 'entity_delete');
-            $df = new DeleteUserForm($this->out, $this->profile);
+            $df = new DeleteUserForm($this->out, $this->profile, $this->r2args);
             $df->show();
             $this->out->elementEnd('li');
         }