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

Avoid PHP notice.

parent d57a76e6
Branches
Tags
No related merge requests found
...@@ -596,7 +596,8 @@ class Server ...@@ -596,7 +596,8 @@ class Server
// Get non-deleted records from the Solr index: // Get non-deleted records from the Solr index:
$result = $this->listRecordsGetNonDeleted( $result = $this->listRecordsGetNonDeleted(
$from, $until, $solrOffset, $solrLimit, $params['set'] $from, $until, $solrOffset, $solrLimit,
isset($params['set']) ? $params['set'] : ''
); );
$nonDeletedCount = $result->getResultTotal(); $nonDeletedCount = $result->getResultTotal();
$format = $params['metadataPrefix']; $format = $params['metadataPrefix'];
......
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