Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function services/users/users returns one user several times #58

Closed
GoogleCodeExporter opened this issue Jul 19, 2015 · 1 comment
Closed

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?

Call the method with 3 different uuid's as param.

What is the expected output?

An array with the 3 different users.

What do you see instead?

An array with 3 elements, but each element contains the same user.

What version of the product are you using?

The current one.

Please provide any additional information below.

In services/users/users.php, correct the following line:
$results[$row['uuid']] = &$entry;

Corrent one should be:
$results[$row['uuid']] = $entry;


Original issue reported on code.google.com by o.di...@arcor.de on 28 Aug 2011 at 7:49

@GoogleCodeExporter
Copy link
Author

This issue was updated by revision r83.


Thanks! Fixed.

Original comment by rygielski on 28 Aug 2011 at 11:19

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant