diff options
-rw-r--r-- | mod/reportedcontent/languages/en.php | 1 | ||||
-rw-r--r-- | mod/reportedcontent/views/default/reportedcontent/listing.php | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mod/reportedcontent/languages/en.php b/mod/reportedcontent/languages/en.php index 83621afc4..b874c1c78 100644 --- a/mod/reportedcontent/languages/en.php +++ b/mod/reportedcontent/languages/en.php @@ -22,6 +22,7 @@ 'reportedcontent:title' => 'Page title',
'reportedcontent:delete' => 'Delete it',
'reportedcontent:archive' => 'Archive it',
+ 'reportedcontent:visit' => 'Visit reported item',
'reportedcontent:by' => 'Report by',
'reportedcontent:objecttitle' => 'Object title',
'reportedcontent:objecturl' => 'Object url',
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>";
|