diff options
author | Robin Appelman <robin@icewind.nl> | 2017-03-30 12:38:48 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-03-30 12:49:09 +0200 |
commit | 11c1e5dd8641e38c44e49d0f527444be7f92da1b (patch) | |
tree | ba2afbd634ba99f84271fab595d2fc7bdfe3a6b7 /lib/private/Repair | |
parent | 48df99f2e0674984edd283c2dceefdaa03ab924e (diff) | |
download | nextcloud-server-11c1e5dd8641e38c44e49d0f527444be7f92da1b.tar.gz nextcloud-server-11c1e5dd8641e38c44e49d0f527444be7f92da1b.zip |
fix whitespace in cleantags
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Repair')
-rw-r--r-- | lib/private/Repair/CleanTags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Repair/CleanTags.php b/lib/private/Repair/CleanTags.php index 8b62395a501..9b44fb1e671 100644 --- a/lib/private/Repair/CleanTags.php +++ b/lib/private/Repair/CleanTags.php @@ -173,7 +173,7 @@ class CleanTags implements IRepairStep { $qb->select('d.' . $deleteId) ->from($deleteTable, 'd') - ->leftJoin('d', $sourceTable, 's', $qb->expr()->eq('d.' . $deleteId, ' s.' . $sourceId)) + ->leftJoin('d', $sourceTable, 's', $qb->expr()->eq('d.' . $deleteId, 's.' . $sourceId)) ->where( $qb->expr()->eq('d.type', $qb->expr()->literal('files')) ) |