From: Zach Copley Date: Wed, 13 Jan 2010 18:33:13 +0000 (+0000) Subject: Fix approval date and label on apps list X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cff2cfd7a7566542ce860410e7ef006a84869c7e;p=quix0rs-gnu-social.git Fix approval date and label on apps list --- diff --git a/lib/applicationlist.php b/lib/applicationlist.php index f2eaefb401..6eae261353 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');