diff options
author | Pascal Terjan <pterjan@mageia.org> | 2020-11-25 22:27:35 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2020-11-25 22:27:35 +0000 |
commit | 9e274e5d754e4d98190afb0d45f62b3af9eaa850 (patch) | |
tree | d42da2a05d001c80b4192ae456cd2a5c48e342e7 /autobuild | |
parent | 40eed0894e2f8018643b6ce49c1826b4631866d9 (diff) | |
download | pkgsubmit-9e274e5d754e4d98190afb0d45f62b3af9eaa850.tar pkgsubmit-9e274e5d754e4d98190afb0d45f62b3af9eaa850.tar.gz pkgsubmit-9e274e5d754e4d98190afb0d45f62b3af9eaa850.tar.bz2 pkgsubmit-9e274e5d754e4d98190afb0d45f62b3af9eaa850.tar.xz pkgsubmit-9e274e5d754e4d98190afb0d45f62b3af9eaa850.zip |
Fix another warning
Diffstat (limited to 'autobuild')
-rw-r--r-- | autobuild/results.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autobuild/results.php b/autobuild/results.php index b81555c..19af284 100644 --- a/autobuild/results.php +++ b/autobuild/results.php @@ -311,7 +311,7 @@ $db->close(); ?> </table> <?php -if ($_GET['include_success'] === 'true') { +if (array_key_exists('include_success', $_GET) && $_GET['include_success'] === 'true') { echo "<h2>Successful builds ($nb_success/$nb_tried)</h2>\n<ul>\n"; foreach ($success as $rpm) { $parsed = parse_package($rpm); |