diff options
Diffstat (limited to 'web/template/pkg_details.php')
-rw-r--r-- | web/template/pkg_details.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index 2cdc98bd..49586b9b 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -145,12 +145,11 @@ $out_of_date_time = ($row["OutOfDateTS"] == 0) ? $msg : gmdate("r", intval($row[ } reset($pkgsearch_vars); - # $darr[3] is the DepCondition if ($darr[2] == 0) { - echo $url . "'>" . $darr[1] . $darr[3] . "</a>"; + echo $url . "'>" . $darr[1] . "</a>"; } else { - print "<a href='http://www.archlinux.org/packages/search/?q=".$darr[1]."'>".$darr[1].$darr[3]."</a>"; + print "<a href='http://www.archlinux.org/packages/search/?q=".$darr[1]."'>".$darr[1]."</a>"; } } |