diff options
Diffstat (limited to 'www/index.php')
| -rw-r--r-- | www/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/index.php b/www/index.php index 7c4904b..c1acfdf 100644 --- a/www/index.php +++ b/www/index.php @@ -19,7 +19,9 @@ if (isset($_GET['page'])) { if ($page >= 100) { //Elasticsearch by default only allows 100 pages // we do not want exceptions in our logs - throw new Exception_Input('List page is too large'); + header('HTTP/1.0 400 Bad Request'); + echo "List page number is too large\n"; + exit(1); } } |
