diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-15 08:59:14 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-15 08:59:14 +0000 |
commit | 530be24eace00d7106767374327d9d459ab37029 (patch) | |
tree | 0e3d1f2e002b8d9a67d6fc4ed4fe70fc22b9965c /mod/reportedcontent/views | |
parent | 200e2e2e2faa065e6b6ca30accfb4aada3042432 (diff) | |
download | elgg-530be24eace00d7106767374327d9d459ab37029.tar.gz elgg-530be24eace00d7106767374327d9d459ab37029.tar.bz2 |
reported content tweaks
git-svn-id: https://code.elgg.org/elgg/trunk@1927 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/views')
-rw-r--r-- | mod/reportedcontent/views/default/reportedcontent/listing.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/reportedcontent/views/default/reportedcontent/listing.php b/mod/reportedcontent/views/default/reportedcontent/listing.php index 18e1f2611..8a0342ed2 100644 --- a/mod/reportedcontent/views/default/reportedcontent/listing.php +++ b/mod/reportedcontent/views/default/reportedcontent/listing.php @@ -17,9 +17,9 @@ echo "<p class=\"reportedcontent_detail\"><b>" . elgg_echo('reportedcontent:by') . ": </b><a href=\"{$user_url}\">" . $user . "</a>, " . friendly_time($report->time_created) . "</p>";
echo "<p class=\"reportedcontent_detail\"><b>" . elgg_echo('reportedcontent:objecttitle') . ": </b>" . $report->title . "</p>";
echo "<p class=\"reportedcontent_detail\">[<a href=\"\">" . elgg_echo('reportedcontent:archive') . "</a>] - [<a href=\"\">" . elgg_echo('reportedcontent:delete') . "</a>]</p>";
- echo "<p><a class=\"reportedcontent_details\">" . elgg_echo("more info") . "</a></p>";
- echo "<div class=\"reportedcontent_details\" style=\"display:none;\">";
- echo "<p class=\"reportedcontent_detail\"><b>" . elgg_echo('reportedcontent:objecturl') . ": </b><a href=\"{$report->address}\">" . $report->address . "</a></p>";
+ echo "<p><a class=\"manifest_details\">" . elgg_echo("more info") . "</a></p>";
+ echo "<div class=\"manifest_file\">";
+ echo "<p class=\"reportedcontent_detail\"><b>" . elgg_echo('reportedcontent:objecturl') . ": </b><a href=\"{$report->address}\">" . elgg_echo('reportedcontent:visit') . "</a></p>";
echo "<p class=\"reportedcontent_detail\"><b>" . elgg_echo('reportedcontent:reason') . ": </b>" .$report->description . "</p>";
echo "</div></div>";
|