[FIX] Admin Panel Users: Show user shares

Fixes #1624
This commit is contained in:
Sebastian Grewe 2014-01-29 09:27:34 +01:00
parent 6e23480434
commit d84018763d

View File

@ -437,7 +437,7 @@ class Statistics extends Base {
// Add our cached shares to the users
$aUsers = array();
while ($row = $result->fetch_assoc()) {
$row['shares'] = $this->getUserShares($row['id']);
$row['shares'] = $this->getUserShares($row['username'], $row['id']);
$aUsers[] = $row;
}
if (count($aUsers) > 0) {