[open-ils-commits] [GIT] Evergreen ILS branch master updated. ace51daec9cb7065b67bea336ef09debc0a034e4

Evergreen Git git at git.evergreen-ils.org
Tue Jun 12 12:37:33 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  ace51daec9cb7065b67bea336ef09debc0a034e4 (commit)
      from  21d99800e0e3f99615cbe2725c6e1a371256166c (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 ace51daec9cb7065b67bea336ef09debc0a034e4
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