Skip to content
Snippets Groups Projects
Commit 2b652644 authored by Laurent's avatar Laurent
Browse files

dev 13769 fix sql query for facets

parent cd506be6
Branches
Tags
4 merge requests!628Master,!600Master,!589Dev#13769 cache doc availability,!564Dev#13769 cache doc availability
......@@ -45,8 +45,9 @@ if ($phase == 7.1) {
$notices = Class_Notice::findAllBy([
"where" =>
"id_notice > ".$phase_data["pointeur_notice"]
." and date_maj >='" . $phase_data["pointeur"]."'"
. " Order by id_notice limit 0,1000" ]);
." and date_maj >='" . $phase_data["pointeur"]."'",
"order" => "id_notice",
"limit" => "0,1000"]);
if (!$notices) break;
foreach ($notices as $notice) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment