Fix approval date and label on apps list

This commit is contained in:
Zach Copley 2010-01-13 18:33:13 +00:00
parent 7b3c099f95
commit cff2cfd7a7
1 changed files with 2 additions and 2 deletions

View File

@ -136,8 +136,8 @@ class ApplicationList extends Widget
$access = ($this->application->access_type & Oauth_application::$writeAccess)
? 'read-write' : 'read-only';
$txt = 'Approved ' . common_exact_date($appUser->modified) .
" $access for access.";
$txt = 'Approved ' . common_date_string($appUser->modified) .
" - $access access.";
$this->out->raw($txt);
$this->out->elementEnd('li');