diff options
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/index.php b/web/html/index.php index 7d28d75..d175797 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -277,7 +277,7 @@ if (!empty($user)) { # Number of safe packages print "<tr>"; print "<td class='boxSoft'>"; - if ($atype == 'Trusted User') { + if ($atype == 'Trusted User' || $atype == 'Developer') { $q = "SELECT count(*) FROM Packages,Users WHERE Packages.Safe = 1 AND Packages.VerifiedBy = Users.ID AND Users.Username='".mysql_real_escape_string($user)."'"; $result = db_query($q, $dbh); $row = mysql_fetch_row($result); |