Do not throw exception but send 400
[phinde.git] / www / index.php
index 33adfb0ac6a20ed04ed6c635f7fe9c284ef1a10a..c1acfdf301c99cadbf5ef491e2404f3ec656e8fa 100644 (file)
@@ -15,6 +15,14 @@ if (isset($_GET['page'])) {
     }
     //PEAR Pager begins at 1
     $page = (int)$_GET['page'] - 1;
+
+    if ($page >= 100) {
+        //Elasticsearch by default only allows 100 pages
+        // we do not want exceptions in our logs
+        header('HTTP/1.0 400 Bad Request');
+        echo "List page number is too large\n";
+        exit(1);
+    }
 }
 
 $perPage = 10;//$GLOBALS['phinde']['perPage'];
@@ -98,7 +106,7 @@ $timeEnd = microtime(true);
 
 $pager = new Html_Pager(
     $res->hits->total, $perPage, $page + 1,
-    $baseLink
+    buildLink($baseLink, $filters, null, null)
 );
 
 foreach ($res->hits->hits as &$hit) {