diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-09 20:28:53 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-09 20:28:53 +0200 |
commit | 6f7de5c818c4a8b7724e8d63377698c30827b5ba (patch) | |
tree | aafa1b244b78d817c42677237b1f4dac283b0b69 | |
parent | a5f1fb66fceec0fa3ea5f4b44ca8ceaef08bad6a (diff) | |
download | aurweb-6f7de5c818c4a8b7724e8d63377698c30827b5ba.tar.xz |
pkg_details.php: Fix dependency links
Remove an erroneous quote from the destination URL of links to
officially supported package dependencies on archweb.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | web/template/pkg_details.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index 05a20fe..67110fa 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -138,7 +138,7 @@ if ($atype == "Developer" || $atype == "Trusted User"): ?> <li><a href="packages.php?ID=<?php echo $darr[2]?>" title="<?php echo __('View packages details for').' '.$darr[0].$darr[1]?>"><?php echo $darr[0].$darr[1]?></a></li> <?php else: ?> - <li><a href="http://www.archlinux.org/packages/?q="<?php echo urlencode($darr[0])?>" title="<?php echo __('View packages details for').' '.$darr[0].$darr[1] ?>"><?php echo $darr[0].$darr[1] ?></a></li> + <li><a href="http://www.archlinux.org/packages/?q=<?php echo urlencode($darr[0])?>" title="<?php echo __('View packages details for').' '.$darr[0].$darr[1] ?>"><?php echo $darr[0].$darr[1] ?></a></li> <?php endif; ?> <?php endwhile; ?> </ul> |