Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2a38a8b

Browse files
committed
Remove ticks in comment santizer.
1 parent ec69958 commit 2a38a8b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ workflows:
149149
triggers:
150150
- schedule:
151151
# Uses UTC timezone.
152-
cron: "15 17 * * *"
152+
cron: "51 18 * * *"
153153
filters:
154154
branches:
155155
only:

src/Drupal/Commands/sql/SanitizeCommentsCommands.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public function sanitize($result, CommandData $commandData)
4747

4848
// Update auth.
4949
$this->database->update('comment_field_data')
50-
->expression('name', "CONCAT('User', `uid`)")
51-
->expression('mail', "CONCAT('user+', `uid`, '@example.com')")
50+
->expression('name', "CONCAT('User', uid)")
51+
->expression('mail', "CONCAT('user+', uid, '@example.com')")
5252
->fields(['homepage' => 'http://example.com'])
5353
->condition('uid', 1, '>=')
5454
->execute();

0 commit comments

Comments
 (0)