[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. 6689a84cce89f60cbac8d0cc55be018043c0da5f
Evergreen Git
git at git.evergreen-ils.org
Tue Jun 12 12:38:07 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, rel_2_2 has been updated
via 6689a84cce89f60cbac8d0cc55be018043c0da5f (commit)
from b6575fd5961b7431ff54e48eefce6be55766e84c (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 6689a84cce89f60cbac8d0cc55be018043c0da5f
Author: Dan Wells <dbw2 at calvin.edu>
Date: Tue Jun 12 09:03:31 2012 -0400
Serial Note Sort Fix
Serial notes are currently sorting backwards from what is intended
(and what is expected based on other interfaces). This was caused
by adding a sort to the middle-layer code which resulted in an
unwanted double reverse.
[whitespace adjustment by LFW per request of DBS]
Signed-off-by: Dan Wells <dbw2 at calvin.edu>
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
diff --git a/Open-ILS/xul/staff_client/server/serial/notes.xul b/Open-ILS/xul/staff_client/server/serial/notes.xul
index 3866802..207b448 100644
--- a/Open-ILS/xul/staff_client/server/serial/notes.xul
+++ b/Open-ILS/xul/staff_client/server/serial/notes.xul
@@ -77,7 +77,11 @@
}
function retrieve_notes() {
- g.notes = g.network.simple_request('FM_'+g.function_type+'_RETRIEVE_ALL',[ { 'authtoken' : ses(), 'object_id' : g.object_id } ]).reverse();
+ g.notes = g.network.simple_request(
+ 'FM_' + g.function_type + '_RETRIEVE_ALL', [
+ { 'authtoken' : ses(), 'object_id' : g.object_id }
+ ]
+ );
}
function apply(node,field,value) {
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/xul/staff_client/server/serial/notes.xul | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list