Merge pull request #11659 from MrPetovan/bug/11511-relocate-quote-identifier
Add missing identifier quote in Database->replaceInTableFields
This commit is contained in:
commit
13a5a30b28
|
@ -1820,7 +1820,7 @@ class Database
|
||||||
|
|
||||||
$upds = implode(', ', $upd);
|
$upds = implode(', ', $upd);
|
||||||
|
|
||||||
$r = $this->e(sprintf("UPDATE %s SET %s;", $table_name, $upds));
|
$r = $this->e(sprintf("UPDATE %s SET %s;", DBA::quoteIdentifier($table_name), $upds));
|
||||||
if (!$this->isResult($r)) {
|
if (!$this->isResult($r)) {
|
||||||
throw new \RuntimeException("Failed updating `$table_name`: " . $this->errorMessage());
|
throw new \RuntimeException("Failed updating `$table_name`: " . $this->errorMessage());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue