aboutsummaryrefslogtreecommitdiff
path: root/mod/reportedcontent/views/default/reportedcontent
diff options
context:
space:
mode:
authorpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-13 17:20:15 +0000
committerpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-13 17:20:15 +0000
commitbe7831805e640cff187efb92f94ea141dafb82b4 (patch)
tree6cd055ba21b42351a46417dbe01922fc18341009 /mod/reportedcontent/views/default/reportedcontent
parentd24169856137d5327f657cd18ff50ea4190ab0a2 (diff)
downloadelgg-be7831805e640cff187efb92f94ea141dafb82b4.tar.gz
elgg-be7831805e640cff187efb92f94ea141dafb82b4.tar.bz2
css classname cleanup, prep for v1.5 default theme
git-svn-id: https://code.elgg.org/elgg/trunk@2749 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/views/default/reportedcontent')
-rw-r--r--mod/reportedcontent/views/default/reportedcontent/form.php5
-rw-r--r--mod/reportedcontent/views/default/reportedcontent/listing.php6
2 files changed, 7 insertions, 4 deletions
diff --git a/mod/reportedcontent/views/default/reportedcontent/form.php b/mod/reportedcontent/views/default/reportedcontent/form.php
index ed4833f6e..29dd02f0e 100644
--- a/mod/reportedcontent/views/default/reportedcontent/form.php
+++ b/mod/reportedcontent/views/default/reportedcontent/form.php
@@ -22,7 +22,7 @@
$owner = $vars['user'];
?>
-
+<div class="contentWrapper">
<form action="<?php echo $vars['url']; ?>action/reportedcontent/add" method="post">
<p>
@@ -68,4 +68,5 @@
<input type="submit" value="<?php echo elgg_echo('reportedcontent:report'); ?>" />
</p>
- </form> \ No newline at end of file
+ </form>
+</div> \ No newline at end of file
diff --git a/mod/reportedcontent/views/default/reportedcontent/listing.php b/mod/reportedcontent/views/default/reportedcontent/listing.php
index 2a00e698b..57628ba19 100644
--- a/mod/reportedcontent/views/default/reportedcontent/listing.php
+++ b/mod/reportedcontent/views/default/reportedcontent/listing.php
@@ -1,5 +1,8 @@
+
<?php
+ echo "<div class=\"contentWrapper\">";
+
if($vars['entity']){
foreach($vars['entity'] as $report){
@@ -15,7 +18,6 @@
$reportedcontent_background = "active_report";
}
-
echo "<div class=\"reportedcontent_content {$reportedcontent_background}\">";
echo "<p class=\"reportedcontent_detail\">";
if($report->state != 'archived')
@@ -33,5 +35,5 @@
}
}
-
+ echo "</div>";
?> \ No newline at end of file