Merge branch 'hotfixes/hotfix-ajax-get-produits' into staging

This commit is contained in:
Tiavina 2024-12-30 08:28:45 +03:00
commit 1c2381273e

View File

@ -379,8 +379,7 @@ class Bdd {
} }
public function getProduits($idNextcloud){ public function getProduits($idNextcloud){
$sql = "SELECT * FROM ".$this->tableprefix."produit $sql = "SELECT * FROM ".$this->tableprefix."produit;";
WHERE $this->tableprefix.produit.id";
return $this->execSQL($sql, array()); return $this->execSQL($sql, array());
} }