aboutsummaryrefslogtreecommitdiff
path: root/views/default/page_elements/owner_block.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-03 05:27:47 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-03 05:27:47 +0000
commit5170cc2b677a9d521dbc2176c6bb1f25efbbc785 (patch)
tree05233623823df1dda4ee9202fb3b11215a281ee7 /views/default/page_elements/owner_block.php
parent037148770b5bc8c8682d8c992f9fbf490d608a48 (diff)
downloadelgg-5170cc2b677a9d521dbc2176c6bb1f25efbbc785.tar.gz
elgg-5170cc2b677a9d521dbc2176c6bb1f25efbbc785.tar.bz2
Fixes #2440: Converted clearfloat to clearfix, brought back orig clearfloat
git-svn-id: http://code.elgg.org/elgg/trunk@7223 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/page_elements/owner_block.php')
-rw-r--r--views/default/page_elements/owner_block.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/page_elements/owner_block.php b/views/default/page_elements/owner_block.php
index 45e4f70af..ab1344b21 100644
--- a/views/default/page_elements/owner_block.php
+++ b/views/default/page_elements/owner_block.php
@@ -22,7 +22,7 @@ if (isset($autofeed) && $autofeed == true) {
$url = elgg_format_url($url);
$label = elgg_echo('feed:rss');
$contents .= <<<END
- <div class="rss_link clearfloat"><a href="{$url}" rel="nofollow" title="{$label}">{$label}</a></div>
+ <div class="rss_link clearfix"><a href="{$url}" rel="nofollow" title="{$label}">{$label}</a></div>
END;
}
@@ -35,7 +35,7 @@ if(is_plugin_enabled('profile')) {
$icon = elgg_view('profile/icon', array('entity' => $owner, 'size' => 'tiny'));
$owner_url = $owner->getURL();
$display = "<div class='owner_block_icon'>$icon</div>";
- $display .= '<div class="owner_block_contents clearfloat">';
+ $display .= '<div class="owner_block_contents clearfix">';
$display .= "<h3><a href=\"$owner_url\">{$owner->name}</a></h3>";
if ($owner->briefdescription) {
@@ -67,7 +67,7 @@ if(is_plugin_enabled('profile')) {
// Allow plugins to extend the owner block contents
$display .= elgg_view('owner_block/profile_extend');
- $contents .= "<div id='owner_block' class='clearfloat'>$display</div>";
+ $contents .= "<div id='owner_block' class='clearfix'>$display</div>";
}
}