X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fdeleteuser.php;h=6b74575ab435e0d149b53ef788ca4fafde95c4d5;hb=0a2c51510ca785b5e3564fc0830518527929dc38;hp=19b1e20e833ab918843269905c26762da2a99ef4;hpb=7a9777df053a9007b5eaa71f5437584065b615a5;p=quix0rs-gnu-social.git diff --git a/actions/deleteuser.php b/actions/deleteuser.php index 19b1e20e83..6b74575ab4 100644 --- a/actions/deleteuser.php +++ b/actions/deleteuser.php @@ -64,15 +64,13 @@ class DeleteuserAction extends ProfileFormAction if (!$cur->hasRight(Right::DELETEUSER)) { // TRANS: Client error displayed when trying to delete a user without having the right to delete users. $this->clientError(_('You cannot delete users.')); - return false; } - $this->user = User::staticGet('id', $this->profile->id); + $this->user = User::getKV('id', $this->profile->id); if (empty($this->user)) { // TRANS: Client error displayed when trying to delete a non-local user. $this->clientError(_('You can only delete local users.')); - return false; } return true; @@ -103,6 +101,8 @@ class DeleteuserAction extends ProfileFormAction function showContent() { $this->areYouSureForm(); + $block = new AccountProfileBlock($this, $this->profile); + $block->show(); } function title() {