Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Hlavtox committed Feb 25, 2024
1 parent 89d454f commit 35d3f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/PrestaShopBackup.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public function add()

foreach ($row as $value) {
if ($value === null) {
$s .= "NULL,";
$s .= 'NULL,';
} else {
$s .= "'" . pSQL($value, true) . "',";
}
Expand Down

0 comments on commit 35d3f25

Please sign in to comment.