blob: 710079c2a062e5719a6f82af56d6cee202ec519b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Friendly time
* Translates an epoch time into a human-readable time.
*
* @uses string $vars['time'] Unix-style epoch timestamp
*/
$friendly_time = elgg_get_friendly_time($vars['time']);
$timestamp = htmlentities(date(elgg_echo('friendlytime:date_format'), $vars['time']));
echo "<acronym title=\"$timestamp\">$friendly_time</acronym>";
|