diff options
author | Zach Copley <zach@status.net> | 2010-01-13 18:33:13 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-14 02:41:09 +0000 |
commit | 9f3c47ccb4582ea0a57d460b6ec48184e9d8509e (patch) | |
tree | a1d836aa4c1d9f3fbfc4193771aa4e470150566f | |
parent | 8cdea20ac584bc08eb0e2e333934b29f69eff7c0 (diff) |
Fix approval date and label on apps list
-rw-r--r-- | lib/applicationlist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/applicationlist.php b/lib/applicationlist.php index f2eaefb40..6eae26135 100644 --- a/lib/applicationlist.php +++ b/lib/applicationlist.php @@ -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'); |