We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0690b commit ebcd34dCopy full SHA for ebcd34d
src/Drush/Commands/PlaywrightDrushCommands.php
@@ -250,6 +250,7 @@ public function getCanonicalUrl(): string {
250
public function cleanUpContent(string $keyword) {
251
$node_storage = $this->getEntityTypeManager()->getStorage('node');
252
$nids = $node_storage->getQuery()
253
+ ->accessCheck(FALSE)
254
->condition('title', $keyword, 'STARTS_WITH')
255
->execute();
256
if (!empty($nids)) {
@@ -260,6 +261,7 @@ public function cleanUpContent(string $keyword) {
260
261
}
262
$taxonomy_term_storage = $this->getEntityTypeManager()->getStorage('taxonomy_term');
263
$tids = $taxonomy_term_storage->getQuery()
264
265
->condition('name', $keyword, 'STARTS_WITH')
266
267
if (!empty($tids)) {
0 commit comments