diff options
author | Remi Collet <fedora@famillecollet.com> | 2013-05-08 13:56:17 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2013-05-08 13:56:17 +0200 |
commit | 267655746e046f63a26cba2c57439fd9469db51a (patch) | |
tree | 01835c4629cb6ee3f83ea5d665b47e962392d03f /rpm.php | |
parent | b16681dcf55114eed548021641a7c7794ce8e334 (diff) |
fix state icon when same version in base / testing
Diffstat (limited to 'rpm.php')
-rw-r--r-- | rpm.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -205,7 +205,7 @@ function report($db, $type) $rpm['rel'], $repo['sub'] ); - if ( $verup==$verpm ) { + if ($verup==$verpm && $class!='check') { $class="check"; } break; @@ -216,7 +216,7 @@ function report($db, $type) $rpm['rel'], $repo['sub'] ); - if ( $verup==$verpm ) { + if ($verup==$verpm && !$class) { $class="info"; } break; |