diff options
Diffstat (limited to 'mod/thewire/views/default')
-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 |