Skip to content
Snippets Groups Projects
Commit 00784824 authored by Demian Katz's avatar Demian Katz
Browse files

Do not create tags when searching for them.

- Resolves VUFIND-1191.
parent 5b45e378
No related merge requests found
......@@ -48,7 +48,7 @@ class Results extends BaseResults
protected function performSearch()
{
$table = $this->getTable('Tags');
$tag = $table->getByText($this->getParams()->getDisplayQuery());
$tag = $table->getByText($this->getParams()->getDisplayQuery(), false);
if (!empty($tag)) {
$rawResults = $tag->getResources(null, $this->getParams()->getSort());
} else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment