summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-05-02 08:55:01 +0200
committerErich Eckner <git@eckner.net>2019-05-02 08:55:01 +0200
commit4a5d8f05db9564cda633942c29481f98c3e57886 (patch)
tree76119d756e2c668efb8e181aa3b0da31e90f3995
parentf39dd0c1dbd533ed0c233a2ef53ae08da67e87aa (diff)
downloadwebsite-4a5d8f05db9564cda633942c29481f98c3e57886.tar.xz
packages/pkginfo.php: style
-rw-r--r--packages/pkginfo.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/pkginfo.php b/packages/pkginfo.php
index 5d93db9..49a6316 100644
--- a/packages/pkginfo.php
+++ b/packages/pkginfo.php
@@ -215,7 +215,8 @@ require_once BASE . "/lib/style.php";
" JOIN `repository_stability_relations` AS `subst_rsr` ON `subst_rsr`.`less_stable`=`subst_r`.`stability`" .
" AND `subst_rsr`.`less_stable`!=`subst_rsr`.`more_stable`" .
// and more (or equally) stable than us
- " JOIN `repository_stability_relations` AS `subst_rsr2` ON `subst_rsr2`.`more_stable`=`subst_r`.`stability`" .
+ " JOIN `repository_stability_relations` AS `subst_rsr2`" .
+ " ON `subst_rsr2`.`more_stable`=`subst_r`.`stability`" .
" WHERE `subst_bp`.`pkgname`=`binary_packages`.`pkgname`" .
" AND `subst_rsr`.`more_stable`=`repositories`.`stability`" .
" AND `subst_rsr2`.`less_stable`=" . $mysql_content["repo_stability"] .