diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-27 17:00:23 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-27 17:00:23 +0000 |
commit | d33b1210925eb4077b582e0c17875103c09772c2 (patch) | |
tree | 3af0f44a1f4434f18162c8a3d478613fa60ef291 /mod/groups/views/default/forum/topicposts.php | |
parent | c3fc445ccbc590ec930fe56e5756b88bddb13259 (diff) | |
download | elgg-d33b1210925eb4077b582e0c17875103c09772c2.tar.gz elgg-d33b1210925eb4077b582e0c17875103c09772c2.tar.bz2 |
Removing WSOD errors in groups
git-svn-id: https://code.elgg.org/elgg/trunk@2317 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/views/default/forum/topicposts.php')
-rw-r--r-- | mod/groups/views/default/forum/topicposts.php | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/mod/groups/views/default/forum/topicposts.php b/mod/groups/views/default/forum/topicposts.php index 89c943019..73ba1ee90 100644 --- a/mod/groups/views/default/forum/topicposts.php +++ b/mod/groups/views/default/forum/topicposts.php @@ -21,13 +21,17 @@ <td>
<?php
//get infomation about the owner of the comment
- $post_owner = get_user($vars['entity']->owner_guid);
-
- //display the user icon
- echo "<div class=\"post_icon\">" . elgg_view("profile/icon",array('entity' => $post_owner, 'size' => 'small')) . "</div>";
-
- //display the user name
- echo "<p><b>" . $post_owner->name . "</b><br />";
+ if ($post_owner = get_user($vars['entity']->owner_guid)) {
+
+ //display the user icon
+ echo "<div class=\"post_icon\">" . elgg_view("profile/icon",array('entity' => $post_owner, 'size' => 'small')) . "</div>";
+
+ //display the user name
+ echo "<p><b>" . $post_owner->name . "</b><br />";
+
+ } else {
+ echo "<p>";
+ }
//display the date of the comment
echo "<small>" . friendly_time($vars['entity']->time_created) . "</small></p>";
|