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@esilibrary.com>
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
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();