[open-ils-commits] [GIT] Evergreen ILS branch rel_2_11 updated. 144763714beceb16e8b3e78c137b6a7a1814eb29
Evergreen Git
git at git.evergreen-ils.org
Wed Feb 15 11:36:26 EST 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_2_11 has been updated
via 144763714beceb16e8b3e78c137b6a7a1814eb29 (commit)
from b442a17ad26a34d35197079e1f12128773f1ae81 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 144763714beceb16e8b3e78c137b6a7a1814eb29
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date: Wed Feb 15 10:26:39 2017 -0500
LP#1639236: fix display of temporary list items
Peer to the fix for bug 1638921.
To test
-------
[1] Apply patch.
[2] In public catalog, add one or more bibs to the temporary
list ('My List').
[3] Click the 'View List' button, then verify that the titles
are displayed.
Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
Signed-off-by: Jason Etheridge <jason at esilibrary.com>
diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm
index 093c257..dca778d 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm
@@ -1893,7 +1893,7 @@ sub bib_record_list_via_search {
}
# Throw away other junk from search, keeping only bib IDs.
- return [ map { pop @$_ } @{$search_result->{ids}} ];
+ return [ map { shift @$_ } @{$search_result->{ids}} ];
}
# 'no_flesh' avoids fleshing the target_biblio_record_entry
-----------------------------------------------------------------------
Summary of changes:
.../perlmods/lib/OpenILS/Application/AppUtils.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list