mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
Change to dev-style orphan marking
Prevents out-of-date flag from being hidden
This commit is contained in:
parent
adcf3cecd0
commit
9178ccacd1
7 changed files with 19 additions and 10 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue