Add link to TU's homepage in "Flagged safe by". FS 4138.

Simple feature request. Not sure what purpose it serves.

Signed-off-by: tardo <tardo@nagi-fanboi.net>
This commit is contained in:
tardo 2007-09-22 17:14:14 -04:00
parent 61ddbc18e7
commit adafc112f6
2 changed files with 3 additions and 1 deletions

View file

@ -153,4 +153,6 @@ $_t["en"]["unknown"] = "unknown";
$_t["en"]["Required by"] = "Required by"; $_t["en"]["Required by"] = "Required by";
$_t["en"]["The above files have been verified (by %h%s%h) and are safe to use."] = "The above files have been verified (by %h%s%h) and are safe to use.";
?> ?>

View file

@ -395,7 +395,7 @@ function package_details($id=0, $SID="") {
print "<tr>\n"; print "<tr>\n";
print " <td colspan='2'>"; print " <td colspan='2'>";
if ($row["Safe"]) { if ($row["Safe"]) {
print "<span class='f7'>".__("The above files have been verified (by %s) and are safe to use.", array(username_from_id($row["VerifiedBy"])))."</span></td>"; print "<span class='f7'>".__("The above files have been verified (by %h%s%h) and are safe to use.", array("<a href='/account.php?Action=AccountInfo&ID=".$row["VerifiedBy"]."'>", username_from_id($row["VerifiedBy"]), "</a>"))."</span></td>";
} else { } else {
print "<span class='f6'>".__("Be careful! The above files may contain malicious code that can damage your system.")."</span></td>"; print "<span class='f6'>".__("Be careful! The above files may contain malicious code that can damage your system.")."</span></td>";
} }