mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-03 21:02:34 +00:00 
			
		
		
		
	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:
		@@ -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();
 | 
			
		||||
                }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user