Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions code/web/release_notes/25.11.01.MD
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@
### Indexing Updates
- Correct indexing of items with records to include having special filters for iType and iType to exclude only. (DIS-1619) (*MDN*)

### Koha Updates
- Use current location code as circBranch when circControl is PickupLibrary. (DIS-1525) (*YL*)

### Series Updates
- Correct display of series that exist only in Solr. (DIS-1608) (*MDN*)
- Improve the display of series with lots of members. (DIS-1609) (*MDN*)

### Other Updates
- Correct return type from solr searcher getRecord. (DIS-1605) (*MDN*)
- Fixed duplicate series display in record details and search results by removing redundant `$indexedSeries` variable because `getSeries()` now populates `additionalSeries` with indexed series data. (DIS-1518) (*LS*)

### Koha Updates
- Use current location code as circBranch when circControl is PickupLibrary. (DIS-1525) (*YL*)
- Load Search History properly for saved author searches. (DIS-1682) (*MDN*)

## This release includes code contributions from
### ByWater Solutions
Expand Down
2 changes: 1 addition & 1 deletion code/web/sys/SearchObject/AbstractGroupedWorkSearcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_once ROOT_DIR . '/RecordDrivers/RecordDriverFactory.php';

abstract class SearchObject_AbstractGroupedWorkSearcher extends SearchObject_SolrSearcher {
protected ?string $searchSubType;
protected ?string $searchSubType = null;
protected int $searchVersion;

public ?string $selectedAvailabilityToggleValue;
Expand Down