diff options
Diffstat (limited to 'buildmaster/build-log.php')
-rw-r--r-- | buildmaster/build-log.php | 3 |
1 files changed, 3 insertions, 0 deletions
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']); |