[open-ils-commits] [GIT] Evergreen ILS branch master updated. 57647657ee6b9121ad9a6da157a7a11972233279
Evergreen Git
git at git.evergreen-ils.org
Wed Feb 15 11:34:00 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, master has been updated
via 57647657ee6b9121ad9a6da157a7a11972233279 (commit)
from f8d57cbc3a206d9e7f454cb99c75e41dd972a842 (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 57647657ee6b9121ad9a6da157a7a11972233279
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