Fixed bug in event log page, where the wrong option flag is specified for the destination directory.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@15991 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2013-04-16 19:38:11 +00:00
parent 829dd22b6c
commit 574b11fc1b

View File

@ -2559,7 +2559,7 @@ zvmPlugin.prototype.loadLogPage = function(node) {
logAttr.append(optsList);
// Create retrieve log checkbox
var retrieveChkBox = $('<li><input type="checkbox" name="s"/></li>');
var retrieveChkBox = $('<li><input type="checkbox" name="t"/></li>');
optsList.append(retrieveChkBox);
retrieveChkBox.append('Retrieve log');
@ -2646,7 +2646,7 @@ zvmPlugin.prototype.loadLogPage = function(node) {
optStr += '-' + opt;
// If it is the retrieve log
if (opt == 's') {
if (opt == 't') {
// Append log destination
optStr += ';' + $('#' + newTabId + ' input[name=tgtLog]').val();
}