From b91a29b64fdbc7b1dd58e13abc668c62ccc6329c Mon Sep 17 00:00:00 2001 From: Rosie Le Faive <lefaive@gmail.com> Date: Fri, 15 Jul 2022 17:25:36 -0300 Subject: [PATCH] coder --- src/Plugin/views/filter/NodeIsIslandora.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Plugin/views/filter/NodeIsIslandora.php b/src/Plugin/views/filter/NodeIsIslandora.php index a94da147..a1f1585c 100644 --- a/src/Plugin/views/filter/NodeIsIslandora.php +++ b/src/Plugin/views/filter/NodeIsIslandora.php @@ -98,7 +98,7 @@ class NodeIsIslandora extends FilterPluginBase implements ContainerFactoryPlugin $form['info'] = [ '#type' => 'item', '#title' => 'Information', - '#description' => t("Configured Islandora bundles: {$types_list} "), + '#description' => t("Configured Islandora bundles: @types", ['@types' => $types_list]), ]; $form['negated'] = [ '#type' => 'checkbox', @@ -140,5 +140,6 @@ class NodeIsIslandora extends FilterPluginBase implements ContainerFactoryPlugin $node_table_alias = $this->query->addTable('node', $this->relationship, $join); $this->query->addWhere($this->options['group'], "$node_table_alias.type", $types, $condition); } + }