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

Fixed bad class references.

parent a04d68db
No related merge requests found
...@@ -139,7 +139,7 @@ class NAF ...@@ -139,7 +139,7 @@ class NAF
throw new \Exception('Problem opening file: ' . $localListFile . "."); throw new \Exception('Problem opening file: ' . $localListFile . ".");
} }
$id = ''; $id = '';
$solr = ConnectionManager::connectToIndex('SolrAuth'); $solr = \VuFind\Connection\Manager::connectToIndex('SolrAuth');
do { do {
Console::writeLine("Reading IDs starting with '{$id}'..."); Console::writeLine("Reading IDs starting with '{$id}'...");
$list = $solr->getTerms('id', $id, 10000); $list = $solr->getTerms('id', $id, 10000);
......
...@@ -80,7 +80,7 @@ class Unicorn extends AbstractBase ...@@ -80,7 +80,7 @@ class Unicorn extends AbstractBase
$this->search_prog = $this->config['Catalog']['search_prog']; $this->search_prog = $this->config['Catalog']['search_prog'];
} }
$this->db = ConnectionManager::connectToIndex(); $this->db = \VuFind\Connection\Manager::connectToIndex();
} }
/** /**
......
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