Skip to content

Commit

Permalink
Merge pull request #949 from Aspen-Discovery/24.09.00
Browse files Browse the repository at this point in the history
[pull] 24.09.00 from Aspen-Discovery:24.09.00
  • Loading branch information
catsoup11789 authored Aug 22, 2024
2 parents c6d982e + 52146e5 commit 73b2d4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified code/koha_export/koha_export.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion code/web/release_notes/24.09.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</div>

### Sierra Updates
- Update Sierra Driver to handle checkouts by API
- Update Sierra Driver to handle checkouts by API. (*MDN-G*)

### WebBuilder Updates
- Do not allow titles for cells to be locked. (AD-8) (*MDN-G*)
Expand All @@ -55,6 +55,7 @@
- Do not apply field locks to new objects. (AD-7) (*MDN-G*)
- Setup a system so some fields can be prevented from being locked. (AD-8) (*MDN-G*)
- Ignore local IntelliJ and PhpStorm Projects. (*MDN-G*)
- Suppress warnings when deserializing details to show in search results for Grouped Work Display Settings. (*MDN-G*)

// katherine
### Indexing Updates
Expand Down
2 changes: 1 addition & 1 deletion code/web/sys/Grouping/GroupedWorkDisplaySetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ public function fetch() {
if ($return) {
if (isset($this->showInSearchResultsMainDetails) && is_string($this->showInSearchResultsMainDetails) && !empty($this->showInSearchResultsMainDetails)) {
// convert to array retrieving from database
$unSerialized = unserialize($this->showInSearchResultsMainDetails);
$unSerialized = @unserialize($this->showInSearchResultsMainDetails);
if (!empty($unSerialized)) {
$this->showInSearchResultsMainDetails = array_combine($unSerialized, $unSerialized);
if (!$this->showInSearchResultsMainDetails) {
Expand Down

0 comments on commit 73b2d4b

Please sign in to comment.