diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-20 14:40:15 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-20 14:40:15 +0000 |
commit | 4f1b7f0620484b9d24757826a65218e94ff2822f (patch) | |
tree | 4f8571218ce1e867704ace2ac0eb3c1ff49272a0 | |
parent | 5db44b98b35b176cae0f43641441d4d294a35507 (diff) | |
download | elgg-4f1b7f0620484b9d24757826a65218e94ff2822f.tar.gz elgg-4f1b7f0620484b9d24757826a65218e94ff2822f.tar.bz2 |
profile status view tweaked
git-svn-id: https://code.elgg.org/elgg/trunk@2861 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/thewire/views/default/thewire/profile_status.php | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php index 507781497..16dea70a3 100644 --- a/mod/thewire/views/default/thewire/profile_status.php +++ b/mod/thewire/views/default/thewire/profile_status.php @@ -15,12 +15,10 @@ $time = "<span>" . friendly_time($lw->time_created) . "</span>";
}
}
-
-?>
-
-<div class="profile_status">
- <?php
- if($latest_wire)
- echo $content . " " . $time;
- ?>
-</div>
\ No newline at end of file +
+ if($latest_wire){
+ echo "<div class=\"profile_status\">";
+ echo $content . " " . $time;
+ echo "</div>";
+ }
+?>
\ No newline at end of file |