index : website | |
Archlinux32 website - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | buildmaster/build-log.php | 3 |
diff --git a/buildmaster/build-log.php b/buildmaster/build-log.php index e2a2fc8..e02e121 100644 --- a/buildmaster/build-log.php +++ b/buildmaster/build-log.php @@ -27,6 +27,9 @@ $result = mysql_run_query( ' LIMIT 1' ); +if ($result -> num_rows != 1) + throw_http_error(404, 'Not Found', 'No logs found for this package.'); + $result = $result -> fetch_assoc(); redirect_temporarily('https://buildmaster.archlinux32.org/build-logs/error/' . $result['log_file']); |