diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-24 10:00:59 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-24 10:00:59 +0000 |
commit | adc58d2bc1807b6c41b012aae7eb74795ac17c67 (patch) | |
tree | c2633db9c0dbb5898b40ecfc1a3a699935093ac5 /mod | |
parent | 0139841a1c0836f738fe0917ad09d84e356b68ea (diff) | |
download | elgg-adc58d2bc1807b6c41b012aae7eb74795ac17c67.tar.gz elgg-adc58d2bc1807b6c41b012aae7eb74795ac17c67.tar.bz2 |
profile status update link formatted
git-svn-id: https://code.elgg.org/elgg/trunk@2909 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/thewire/views/default/thewire/profile_status.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php index 52d4d69f5..385cfdcab 100644 --- a/mod/thewire/views/default/thewire/profile_status.php +++ b/mod/thewire/views/default/thewire/profile_status.php @@ -13,15 +13,16 @@ 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>";
}
}
if($latest_wire){
echo "<div class=\"profile_status\">";
- echo $content . " " . $time;
+ echo $content;
if($owner == $_SESSION['user']->guid)
- echo " <a href=\"{$url_to_wire}\">update</a>";
+ echo " <a class=\"status_update\" href=\"{$url_to_wire}\">update</a>";
+ echo $time;
echo "</div>";
}
?>
\ No newline at end of file |