diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/database/query.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/query.inc b/includes/database/query.inc index c3f5acf39..55eb2c568 100644 --- a/includes/database/query.inc +++ b/includes/database/query.inc @@ -498,7 +498,7 @@ class InsertQuery extends Query { $insert_fields = array_merge($this->defaultFields, $this->insertFields); if (!empty($this->fromQuery)) { - return "INSERT $delay INTO {" . $this->table . '} (' . implode(', ', $insert_fields) . ') ' . $this->fromQuery; + return "INSERT INTO {" . $this->table . '} (' . implode(', ', $insert_fields) . ') ' . $this->fromQuery; } // For simplicity, we will use the $placeholders array to inject |