Skip to content

Commit

Permalink
Fixed: Missing comma...
Browse files Browse the repository at this point in the history
  • Loading branch information
nuxwin committed Jun 20, 2018
1 parent eeb6eb5 commit f65d791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/library/classes/Functions/Counting.php
Expand Up @@ -239,7 +239,7 @@ public static function getObjectsCounts(): array
*/
public static function getResellerClientsCount(int $resellerId): int
{
return static::getObjectsCount('imscp_user', 'userID', 'createdBy = ?' [$resellerId]);
return static::getObjectsCount('imscp_user', 'userID', 'createdBy = ?', [$resellerId]);
}

/**
Expand Down

0 comments on commit f65d791

Please sign in to comment.