Rogue Apostrophe in SQL statement (#5298)

Remove rogue apostrophe in SQL statement for :default_setting_value.
This commit is contained in:
frytimo 2020-06-10 15:23:38 -04:00 committed by GitHub
parent c8d21f48cf
commit 1f4a19bbd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ if ($domains_processed == 1) {
$sql .= "'login', ";
$sql .= "'message', ";
$sql .= "'text', ";
$sql .= "':default_setting_value, ";
$sql .= ":default_setting_value, ";
$sql .= "'true', ";
$sql .= "'' ";
$sql .= ")";