From 6d739789f6b94e7f0311c15334eb1daf550e4776 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 14 Oct 2013 14:00:12 +0200 Subject: [PATCH] protected handle function without args for Action --- actions/userbyid.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.