diff --git a/web/lang/en/pkgfuncs_po.inc b/web/lang/en/pkgfuncs_po.inc
index c2b48ee9..2cc4b6f7 100644
--- a/web/lang/en/pkgfuncs_po.inc
+++ b/web/lang/en/pkgfuncs_po.inc
@@ -103,4 +103,10 @@ $_t["en"]["Any"] = "Any";
$_t["en"]["Voted"] = "Voted";
+$_t["en"]["No New Comment Notification"] = "No New Comment Notification";
+
+$_t["en"]["New Comment Notification"] = "New Comment Notification";
+
+$_t["en"]["Comments"] = "Comments";
+
?>
\ No newline at end of file
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc
index b3e51d84..525bc67b 100644
--- a/web/lib/pkgfuncs.inc
+++ b/web/lib/pkgfuncs.inc
@@ -384,9 +384,59 @@ function package_details($id=0, $SID="") {
print "\n";
print "";
print "\n";
+ print "
\n";
+ print " ";
+ print " |
\n";
+ print "\n";
+ print "\n";
+ print " \n";
+ print "\n";
- # Display package comments
+ print "
\n";
+
+ # Actions Bar
#
+ if ($SID) {
+ print "\n";
+ print "".__("Actions")." |
\n";
+ print "\n";
+ print " |
\n";
+ print "
\n";
+ }
+
+ # Comments
+ #
+ print "\n";
+ print "".__("Comments")." |
\n";
+ print "\n";
+ print "";
+
+ print "\n";
$comments = package_comments($row["ID"]);
if (!empty($comments)) {
while (list($indx, $carr) = each($comments)) {
@@ -431,42 +481,13 @@ function package_details($id=0, $SID="") {
print __("Add Comment")."\">";
print "\n";
print " ";
- if ($SID) {
- print " | \n";
- }
print "\n";
print " \n";
- print "\n";
- print " | \n";
- print "
\n";
- print "
\n";
+
+ print "\n";
+
}
}
return;