Merge pull request #355 from bitpixdigital/hotfix

Changed the $start value within flights.php to zero so that searching for flights with one result are returned by the database.
pull/362/head
Joe Prochazka 2017-10-19 11:33:04 -04:00 zatwierdzone przez GitHub
commit 50d6a163a0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -56,7 +56,7 @@
}
// Set the start stop positions to be used in the query.
$start = 1;
$start = 0;
if (isset($_GET['page'])) {
$start = $_GET['page'] * $itemsPerPage;
}