From 243f517f1fa0548b27a33e8a429a780a4a587e88 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 31 Oct 2010 18:30:50 +0100 Subject: fix display version when only unstable exists --- pkgdb-ajax.php | 1 - rpm.php | 4 ++-- zoom.php | 3 ++- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgdb-ajax.php b/pkgdb-ajax.php index 574bdc0..a2b84ae 100644 --- a/pkgdb-ajax.php +++ b/pkgdb-ajax.php @@ -80,6 +80,5 @@ if ( !isset($name) || !$name ) { } } } -error_log("RETURN:".print_r($fedpkg, true)); echo json_encode($fedpkg); ?> \ No newline at end of file diff --git a/rpm.php b/rpm.php index 93f6308..3b3a2a9 100644 --- a/rpm.php +++ b/rpm.php @@ -135,8 +135,8 @@ function report($db, $type) if ($up['stable']) { $package['upstream_stable'] = $up['stable']; } - if ($up['stable'] - && (!$up['unstable'] + if ($up['unstable'] + && (!$up['stable'] || $up['stable']!=$up['unstable']) ) { $package['upstream_unstable'] = $up['unstable'] . diff --git a/zoom.php b/zoom.php index 56e8e8c..b71a044 100644 --- a/zoom.php +++ b/zoom.php @@ -142,12 +142,13 @@ if ( !isset($name) || !$name ) { if ($up && $up['stable']) { $summary['Stabe version'] = $up['stable']; } - if ($up && $up['stable'] && $up['stable']!=$up['unstable']) { + if ($up && $up['unstable'] && $up['stable']!=$up['unstable']) { $summary['Unstable version'] = $up['unstable']; if ($up['state']) { $summary['Unstable version'] .= ' (' . $up['state'] . ')'; } } + if ($owner && $owner->owner) { $summary['Owner'] = $owner->owner; if ($owner->cc) { -- cgit