aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default
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 /mod/reportedcontent/views/default
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 'mod/reportedcontent/views/default')
-rw-r--r--mod/reportedcontent/views/default/reportedcontent/listing.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/reportedcontent/views/default/reportedcontent/listing.php b/mod/reportedcontent/views/default/reportedcontent/listing.php
index 1004effc9..4236894c2 100644
--- a/mod/reportedcontent/views/default/reportedcontent/listing.php
+++ b/mod/reportedcontent/views/default/reportedcontent/listing.php
@@ -24,7 +24,7 @@ if($vars['entity']){
}
echo "<div class='admin_settings reported_content {$reportedcontent_background}'>";
- echo "<div class='clearfloat controls'>";
+ echo "<div class='clearfix controls'>";
if($report->state != 'archived')
echo "<a class='action_button' href=\"" . elgg_add_action_tokens_to_url(elgg_get_site_url() . "action/reportedcontent/archive?item={$report->guid}") . "\">" . elgg_echo('reportedcontent:archive') . "</a>";
echo "<a class='action_button disabled' href=\"" . elgg_add_action_tokens_to_url(elgg_get_site_url() . "action/reportedcontent/delete?item={$report->guid}") . "\" onclick=\"return confirm('" . elgg_echo('reportedcontent:areyousure') . "')\">" . elgg_echo('reportedcontent:delete') . "</a></div>";