diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-20 14:49:34 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-20 14:49:34 +0000 |
commit | 0c4c47560129484c12d5795881fbfac21fd58959 (patch) | |
tree | fb6c36305ac49cd4f18db242263221197033942a /mod | |
parent | 242b010fc743d29b3fd0571311dabed996800720 (diff) | |
download | elgg-0c4c47560129484c12d5795881fbfac21fd58959.tar.gz elgg-0c4c47560129484c12d5795881fbfac21fd58959.tar.bz2 |
brackets added around timestamp
git-svn-id: https://code.elgg.org/elgg/trunk@2863 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/thewire/views/default/thewire/profile_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php index 16dea70a3..556ae8a9f 100644 --- a/mod/thewire/views/default/thewire/profile_status.php +++ b/mod/thewire/views/default/thewire/profile_status.php @@ -12,7 +12,7 @@ if($latest_wire){
foreach($latest_wire as $lw){
$content = $lw->description;
- $time = "<span>" . friendly_time($lw->time_created) . "</span>";
+ $time = "<span>(" . friendly_time($lw->time_created) . ")</span>";
}
}
|