will output the password hash from the user object since it is not unset on line 363 in plugins/api/users/user/users.php:
// If we have an id try to fetch the user
if ($id = $input->get('id'))
{
$user = JUser::getInstance($id);
if (!$user->id)
{
$this->plugin->setResponse($this->getErrorResponse(JText::_( 'PLG_API_USERS_USER_NOT_FOUND_MESSAGE' )));
foreach ($users as $k => $v)
{
unset($users[$k]->password);
}
$this->plugin->setResponse($users);
}
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »