FIX RE-ordering parameters to artisan queries

This commit is contained in:
Antoine M 2025-04-22 17:24:50 +02:00
parent 0cab0ac4a9
commit 7245cf779c

View File

@ -41,7 +41,9 @@ $queryAllUnaffectedArtisansByStatus = array(
'compare' => '='
)
)
)
),
'orderby' => 'title',
'order' => 'ASC'
);
$queryConseillerRelatedArtisansByStatus = array(
@ -55,7 +57,9 @@ $queryConseillerRelatedArtisansByStatus = array(
'value' => $status,
'compare' => '='
),
)
),
'orderby' => 'title',
'order' => 'ASC'
);