diff options
author | jchu <jchu> | 2004-12-26 21:12:46 +0100 |
---|---|---|
committer | jchu <jchu> | 2004-12-26 21:12:46 +0100 |
commit | 91c3f94ff9df319b548cd332566198b72f8124cd (patch) | |
tree | 17fc5b3a4a8ba5e9f24e8e1084ea7cf45e16935f /web/lib | |
parent | 3606143e6fcbb4dc27632c41d6bfc6c10d535b08 (diff) | |
download | aur-91c3f94ff9df319b548cd332566198b72f8124cd.tar.gz aur-91c3f94ff9df319b548cd332566198b72f8124cd.tar.xz |
commited neotuli's patch for source links
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/pkgfuncs.inc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index 7a45bc29..2a6fda28 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -293,7 +293,17 @@ function package_details($id=0) { print "<tr><td class='boxSoft'>"; $sources = package_sources($row["ID"]); # $sources[0] = 'src'; while (list($k, $src) = each($sources)) { - print "<a href='".$src."'>".$src."</a><br />\n"; + $parsed_url = parse_url($src); + if ($parsed_url['scheme']) + { + //It is an external source + print "<a href='".$src."'>".$src."</a><br />\n"; + } + else + { + //It is presumably an internal source + print "<a href='".dirname($row['URLPath'])."/".$row['Name']."/".$src."'>".$src."</a><br />\n"; + } } print "</td></tr>\n"; print "</table></td>"; |