[open-ils-commits] [GIT] Evergreen ILS branch master updated. e4a3fd1a25734f35d05894a834e6ef01e26e2165
Evergreen Git
git at git.evergreen-ils.org
Wed Aug 19 11:16:11 EDT 2015
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 e4a3fd1a25734f35d05894a834e6ef01e26e2165 (commit)
from df265a5dff29b0f8448fefb0f4d1ef43deb074d3 (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 e4a3fd1a25734f35d05894a834e6ef01e26e2165
Author: Jason Boyer <jboyer at library.in.gov>
Date: Fri Mar 27 08:32:41 2015 -0400
LP 1437292: Order Bucket Names Alphabetically
Prefer alpha ordering to database ordering for bucket names.
Signed-off-by: Jason Boyer <jboyer at library.in.gov>
Signed-off-by: Terran McCanna <tmccanna at georgialibraries.org>
Signed-off-by: Jason Stephenson <jstephenson at mvlc.org>
diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor/Container.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor/Container.pm
index 9952024..dada935 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor/Container.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor/Container.pm
@@ -61,7 +61,7 @@ sub bucket_retrieve_all {
my %buckets;
for my $type (keys %ctypes) {
my $meth = "search_" . $ctypes{$type};
- $buckets{$type} = $e->$meth({owner => $user_id});
+ $buckets{$type} = _sort_buckets($e->$meth({owner => $user_id}));
}
return \%buckets;
-----------------------------------------------------------------------
Summary of changes:
.../lib/OpenILS/Application/Actor/Container.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list