Changed $start value to 0 so that searching for flights with one result work properly.

pull/355/head
Angel Hernandez III 2017-10-11 18:22:28 -04:00
rodzic c5ccb8850d
commit e1270a18e1
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;
}