Unverified Commit acde1326 authored by Armando Lüscher's avatar Armando Lüscher Committed by GitHub

Merge pull request #947 from jacklul/patch_cleancmd

Fix missing specifier
parents 695e63a7 0ced090b
......@@ -9,6 +9,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
### Deprecated
### Removed
### Fixed
- Missing DB table name specifier in `/cleanup` command. (#947)
### Security
## [0.56.0] - 2019-04-15
......
......@@ -306,7 +306,7 @@ class CleanupCommand extends AdminCommand
SELECT id
FROM (
SELECT id
FROM `message`
FROM `%1$s`
WHERE `date` < \'%2$s\'
AND `id` NOT IN (
SELECT `message_id`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment