summaryrefslogtreecommitdiff
path: root/lib/applicationlist.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-01-13 18:33:13 +0000
committerZach Copley <zach@status.net>2010-01-24 16:36:05 -0800
commitcff2cfd7a7566542ce860410e7ef006a84869c7e (patch)
treefc7f508b27f215f87b5fbd0b0811cd69b0f2da84 /lib/applicationlist.php
parent7b3c099f953c1569c18d81fdb8d4230e927d429e (diff)
Fix approval date and label on apps list
Diffstat (limited to 'lib/applicationlist.php')
-rw-r--r--lib/applicationlist.php4
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');