From: Evan Prodromou Date: Mon, 16 Nov 2009 16:06:12 +0000 (+0100) Subject: correct constructor for DeleteUserForm X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a723cc979b5f93d6b688c5d19522cb27fa6c17eb;p=quix0rs-gnu-social.git correct constructor for DeleteUserForm --- diff --git a/lib/userprofile.php b/lib/userprofile.php index 4321a2f939..dedac5bf1b 100644 --- a/lib/userprofile.php +++ b/lib/userprofile.php @@ -327,7 +327,7 @@ class UserProfile extends Widget if ($cur->hasRight(Right::DELETEUSER)) { $this->out->elementStart('li', 'entity_delete'); - $df = DeleteUserForm($this->out, $this->profile, $r2args); + $df = new DeleteUserForm($this->out, $this->profile, $r2args); $df->show(); $this->out->elementEnd('li'); }