diff options
author | jchu <jchu> | 2004-12-15 03:33:41 +0000 |
---|---|---|
committer | jchu <jchu> | 2004-12-15 03:33:41 +0000 |
commit | da8293db8998be37fe13d0c9229b7aab1c1b4e6f (patch) | |
tree | d8d5253b5401be2d28c0e8e671b49b85f1a73e9c /web/lib | |
parent | 341e4e5fa750420c06c319dab36581ecc5dc9381 (diff) | |
download | aurweb-da8293db8998be37fe13d0c9229b7aab1c1b4e6f.tar.xz |
removed those crazy -'s between the name and version
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/pkgfuncs.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc index df1da05..450a352 100644 --- a/web/lib/pkgfuncs.inc +++ b/web/lib/pkgfuncs.inc @@ -225,7 +225,7 @@ function package_details($id=0) { print "<table>\n"; print "<tr>\n"; print " <td colspan='2'><span class='f2'>"; - print $row["Name"] . "-" . $row["Version"]."</span></td>\n"; + print $row["Name"] . " " . $row["Version"]."</span></td>\n"; print "</tr>\n"; print "<tr>\n"; print " <td colspan='2'><span class='f3'>"; @@ -654,7 +654,7 @@ function pkg_search_page($SID="") { } reset($pkgsearch_vars); $url.= "'><span class='black'>".$row["Name"]; - $url.= "-".$row["Version"]."</span></a>"; + $url.= " ".$row["Version"]."</span></a>"; print $url."</span></td>\n"; print " <td class='".$c."'><span class='f5'><span class='blue'>"; print " ".$row["NumVotes"]."</span></span></td>\n"; |