diff options
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/pkgfuncs.inc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index d339922..5999dc5 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -999,9 +999,6 @@ function pkg_search_page($SID="") { if ($row["OutOfDate"]) { print "<span style='background-color: red'>"; } - if ($row["MaintainerUID"]==0 && $row["AURMaintainerUID"]==0) { - print "<span style='background-color: cyan'>"; - } print "<input type='checkbox' name='IDs[".$row["ID"]."]' value='1'>"; # if ($i == 0) { # $all_ids = $row["ID"]; @@ -1068,7 +1065,9 @@ function pkg_search_page($SID="") { if (isset($users[$row["MaintainerUID"]])) { print $users[$row["MaintainerUID"]]["Username"]; } else { - print __("None"); + print "<span style='color: blue; font-style: italic;'>"; + print __("orphan"); + print "</span>"; $managed = 0; } print "</span></span></td>\n"; @@ -1111,8 +1110,7 @@ function pkg_search_page($SID="") { print " <td colspan='2' align='center'>"; print " <span class='f5'>\n"; if ($SID) { - print " <font style='background-color: cyan'>".__("O%hrphan", array('</font>'))." \n"; - print " <font style='background-color: red'>".__("O%hut-of-Date", array('</font>'))." "; + print " <font style='background-color: red'>".__("O%hut-of-Date", array('</font>'))." "; } print ' <span class="green">'.__("Safe")."</span>\n"; print " </span></td>\n"; |