From 574b11fc1b48f2828a69d455f2cb1e9fb8fe62db Mon Sep 17 00:00:00 2001 From: phamt Date: Tue, 16 Apr 2013 19:38:11 +0000 Subject: [PATCH] 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 --- xCAT-UI/js/custom/zvm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-UI/js/custom/zvm.js b/xCAT-UI/js/custom/zvm.js index 4261257d2..346b6436f 100644 --- a/xCAT-UI/js/custom/zvm.js +++ b/xCAT-UI/js/custom/zvm.js @@ -2559,7 +2559,7 @@ zvmPlugin.prototype.loadLogPage = function(node) { logAttr.append(optsList); // Create retrieve log checkbox - var retrieveChkBox = $('
  • '); + var retrieveChkBox = $('
  • '); 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(); }