diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/page_elements/owner_block.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/views/default/page_elements/owner_block.php b/views/default/page_elements/owner_block.php index c2cb75a26..b3a5d139b 100644 --- a/views/default/page_elements/owner_block.php +++ b/views/default/page_elements/owner_block.php @@ -22,7 +22,7 @@ $info = $owner->name;
}
$display = "<div id=\"owner_block_icon\">" . $icon . "</div>";
- $display .= "<div id=\"owner_block_content\">" . $info . "</div><br class=\"clearfloat\" />";
+ $display .= "<div id=\"owner_block_content\">" . $info . "</div><div class=\"clearfloat\"></div>";
if ($owner->briefdescription) {
$desc = $owner->briefdescription;
@@ -67,14 +67,14 @@ END; $contents .= "<div id=\"owner_block_bookmark_this\"><a href=\"javascript:location.href='". $CONFIG->wwwroot . "mod/bookmarks/add.php?address='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)\">{$label3}</a></div>";
}
- - //report this button - if (is_plugin_enabled('reportedcontent')) +
+ //report this button
+ if (is_plugin_enabled('reportedcontent'))
{
- $label4 = elgg_echo('Report this'); + $label4 = elgg_echo('Report this');
$contents .= "<div id=\"owner_block_report_this\"><a href=\"javascript:location.href='". $CONFIG->wwwroot . "mod/reportedcontent/add.php?address='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)\">{$label4}</a></div>";
}
- +
}
|