[open-ils-commits] [GIT] Evergreen ILS branch master updated. 253fb585af95071514c0d98e3b9222d078349e14
Evergreen Git
git at git.evergreen-ils.org
Mon Jun 11 13:48:41 EDT 2012
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 253fb585af95071514c0d98e3b9222d078349e14 (commit)
from 11f1e52976660cf71df351157181d99ba5507135 (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 253fb585af95071514c0d98e3b9222d078349e14
Author: Dan Wells <dbw2 at calvin.edu>
Date: Mon Jun 11 11:18:08 2012 -0400
Show Vandelay Buckets in Manage Record Buckets
The 'Manage Record Buckets' view is currently filtered to show
only 'staff_client' type buckets. This expands the filter to
include 'vandelay_queue' buckets.
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
Signed-off-by: Bill Erickson <berick at esilibrary.com>
diff --git a/Open-ILS/xul/staff_client/server/cat/record_buckets.js b/Open-ILS/xul/staff_client/server/cat/record_buckets.js
index e4a0038..6d11ca1 100644
--- a/Open-ILS/xul/staff_client/server/cat/record_buckets.js
+++ b/Open-ILS/xul/staff_client/server/cat/record_buckets.js
@@ -296,7 +296,7 @@ cat.record_buckets.prototype = {
util.functional.filter_list(
buckets.biblio,
function(o) {
- return o.btype() == 'staff_client';
+ return (o.btype() == 'staff_client' || o.btype() == 'vandelay_queue');
}
),
function(o) {
-----------------------------------------------------------------------
Summary of changes:
.../xul/staff_client/server/cat/record_buckets.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list