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

Fixed bug -- wrong variable name.

parent 4680fdcb
No related merge requests found
...@@ -369,7 +369,7 @@ class SolrMarc extends SolrDefault ...@@ -369,7 +369,7 @@ class SolrMarc extends SolrDefault
} }
if (count($pubResults) > 0) { if (count($pubResults) > 0) {
$results = array_merge($results, $pubResults); $results = array_merge($results, $pubResults);
} else if (count($copyPlaces) > 0) { } else if (count($copyResults) > 0) {
$results = array_merge($results, $copyResults); $results = array_merge($results, $copyResults);
} }
......
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