Skip to content

Commit

Permalink
remove override
Browse files Browse the repository at this point in the history
  • Loading branch information
francescobianco committed Oct 26, 2023
1 parent c294698 commit 5ab1d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Solutions/oracledb.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function readData($param): array
$requestSQL .= ' AND'.$this->get_query_select_limit_offset($param, 'read'); // Add query limit
$requestSQL .= ' ORDER BY '.$this->stringSeparatorOpen.$param['ruleParams']['fieldDateRef'].$this->stringSeparatorClose.' ASC'; // Tri par date utilisateur
// Query validation
$requestSQL = $this->queryValidation($param, 'read', $requestSQL);
$requestSQL = $this->queryValidation($param, 'read', $requestSQL, null);

// Appel de la requête
$q = $this->pdo->prepare($requestSQL);
Expand Down

0 comments on commit 5ab1d08

Please sign in to comment.