Fix user count
This commit is contained in:
parent
c0eee277d1
commit
ba68e042a8
|
@ -194,10 +194,13 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
$defaultAccess = ($this->application->access_type & Oauth_application::$writeAccess)
|
||||
? 'read-write' : 'read-only';
|
||||
$profile = Profile::staticGet($this->application->owner);
|
||||
$userCnt = 0; // XXX: count how many users use the app
|
||||
|
||||
$appUsers = new Oauth_application_user();
|
||||
$appUsers->application_id = $this->application->id;
|
||||
$userCnt = $appUsers->count();
|
||||
|
||||
$this->raw(sprintf(
|
||||
_('Created by %1$s - %2$s access by default - %3$d users.'),
|
||||
_('created by %1$s - %2$s access by default - %3$d users'),
|
||||
$profile->getBestName(),
|
||||
$defaultAccess,
|
||||
$userCnt
|
||||
|
|
Loading…
Reference in New Issue
Block a user