diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-24 18:13:48 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-10-24 18:13:48 +0200 |
commit | b74a87abfcd9b9533c0c2a654894c8d37c0a6018 (patch) | |
tree | bf6cbd76a6c53e5ac738aeb2851dc99b93ec3337 /web | |
parent | d7cba28ad2a6ad30219784349b8d327d84dd3dc3 (diff) | |
download | aurweb-b74a87abfcd9b9533c0c2a654894c8d37c0a6018.tar.xz |
Fix spacing of versioned dependencies
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web')
-rw-r--r-- | web/lib/pkgfuncs.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/pkgfuncs.inc.php b/web/lib/pkgfuncs.inc.php index 717085d..82408fc 100644 --- a/web/lib/pkgfuncs.inc.php +++ b/web/lib/pkgfuncs.inc.php @@ -347,7 +347,7 @@ function pkg_depend_link($name, $type, $cond, $arch, $pkg_id) { break; } } - $link .= ' ' . htmlspecialchars($cond); + $link .= htmlspecialchars($cond) . ' '; foreach ($providers as $key => $provider) { if ($provider[1] == $name) { |