Skip to content

Commit

Permalink
Fix #5121. watchdog:tail throws sql exception when using options or a…
Browse files Browse the repository at this point in the history
…rgument (#5127)
  • Loading branch information
weitzman committed Apr 14, 2022
1 parent d3f4c98 commit ed06117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Drupal/Commands/core/WatchdogCommands.php
Expand Up @@ -133,7 +133,7 @@ public function tail(OutputInterface $output, $substring = '', $options = ['seve
'args' => [],
];
} else {
$where['where'] .= " AND wid > ?";
$where['where'] .= " AND wid > :wid";
}

$last_seen_wid = 0;
Expand Down

0 comments on commit ed06117

Please sign in to comment.