diff --git a/web/html/css/fonts.css b/web/html/css/fonts.css index cbc6ddce..9dea9354 100644 --- a/web/html/css/fonts.css +++ b/web/html/css/fonts.css @@ -44,6 +44,12 @@ span.f7 /* Green Message */ font-size: 14px; font-weight: bold; } +span.f8 /* Internal Sources in Package Details */ +{ + color: #888; + font-size: 12px; + font-weight: bold; +} span.fix /* Monospace fixed-font */ { color: #000; diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index a8da6c9c..8aba3afa 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -173,9 +173,8 @@ $out_of_date_time = ($row["OutOfDateTS"] == 0) ? $msg : gmdate("r", intval($row[ $src = $src[0]; # It is presumably an internal source if ($row["LocationID"] == 2) { - $urlpath = URL_DIR . $row['Name']; - echo ""; - echo "$src
\n"; + echo "$src"; + echo "
\n"; } } }