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

Evergreen Git git at git.evergreen-ils.org
Wed Jul 25 10:03:48 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  0b1d3ca56e7113be185f869a632fd8e49912d040 (commit)
      from  8a81d00af028deb2c291d944bfc1d7d73d319685 (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 0b1d3ca56e7113be185f869a632fd8e49912d040
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Jul 25 09:14:06 2012 -0400

    lp1028906 : Vandelay inspect queue page load repair
    
    This is the result of a bug in the code that went unnoticed until
    c108746532548fd8d3fadd15736375a57208d485 (CGI.js additions).  This patch
    repairs how Vandelay checks the CGI param to determine if it should
    load the 'inspectq' page on load.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>

diff --git a/Open-ILS/web/js/ui/default/vandelay/vandelay.js b/Open-ILS/web/js/ui/default/vandelay/vandelay.js
index 5b959fc..2728b4c 100644
--- a/Open-ILS/web/js/ui/default/vandelay/vandelay.js
+++ b/Open-ILS/web/js/ui/default/vandelay/vandelay.js
@@ -344,7 +344,7 @@ function runStartupCommands() {
     dojo.style('vl-nav-bar', 'visibility', 'visible');
     if(currentQueueId)
         return retrieveQueuedRecords(currentType, currentQueueId, handleRetrieveRecords);
-    if (cgi.param('page', 'inspectq'))
+    if (cgi.param('page') == 'inspectq')
         return vlShowQueueSelect();
         
     vlShowUploadForm();

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/web/js/ui/default/vandelay/vandelay.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list