Old search always start at page 0

This commit is contained in:
Gilles Crettenand
2015-05-19 16:25:04 +02:00
parent 4160e2b3a7
commit bb7c99e190

View File

@@ -296,7 +296,7 @@ class NetBiblio extends WebService
'queryText' => $query,
'queryType' => is_numeric($query) && strlen($query) <= 5 ? 'code' : 'text',
'count' => $limit,
'page' => ($start / $limit),
'page' => 0,
);
$this->NewSearch(json_encode($query));