Skip to content

Commit f1eac86

Browse files
authored
Update class_backup_SQL.php
1 parent 54866e8 commit f1eac86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/class_backup_SQL.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,9 +303,9 @@ private function sql($con, $tables, $limit) {
303303
for ($j = 0; $j < $num_fields; $j++) {
304304
$row[$j] = str_replace("\n", "\\n", addslashes($row[$j]));
305305
if (isset($row[$j])) {
306-
$return .= '"' . $row[$j] . '"';
306+
$return .= "'" . $row[$j] . "'";
307307
} else {
308-
$return .= '""';
308+
$return .= "''";
309309
}
310310
if ($j < ($num_fields - 1))
311311
$return .= ',';

0 commit comments

Comments
 (0)