Skip to content
Open
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
5 changes: 4 additions & 1 deletion code/web/release_notes/25.12.01.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
### Syndetics Updates
- Prevent error loading Syndetics Description when no description is available. ([DIS-1717](https://aspen-discovery.atlassian.net/browse/DIS-1717)) (*MDN*)

### Other Updates
- Fix occassional error when searching that databaseId is not initialized. ([DIS-1732](https://aspen-discovery.atlassian.net/browse/DIS-1732))

## This release includes code contributions from

### Grove
- Mark Noble (*MDN*)

### Nashville Public Library
- James Staub (JStaub)
- James Staub (JStaub)
4 changes: 2 additions & 2 deletions code/web/sys/Grouping/Variation.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Grouping_Variation {
public string $id;
public null|string|int $databaseId;
public null|string|int $databaseId = null;
public string $label;
public string $language;
public bool $isEContent = false;
Expand Down Expand Up @@ -361,4 +361,4 @@ function getHorizontalFormatDisplayInfo() : array {
'numEditions' => $this->getNumRelatedRecords()
];
}
}
}