From: Mikael Nordfeldth Date: Mon, 14 Oct 2013 12:00:12 +0000 (+0200) Subject: protected handle function without args for Action X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6d739789f6b94e7f0311c15334eb1daf550e4776;p=quix0rs-gnu-social.git protected handle function without args for Action --- diff --git a/actions/userbyid.php b/actions/userbyid.php index aa96993e6f..09fb4258d9 100644 --- a/actions/userbyid.php +++ b/actions/userbyid.php @@ -61,9 +61,9 @@ class UserbyidAction extends Action * * @return nothing */ - function handle($args) + protected function handle() { - parent::handle($args); + parent::handle(); $id = $this->trimmed('id'); if (!$id) { // TRANS: Client error displayed trying to find a user by ID without providing an ID.