From e30f56e22a93c5f11dcc0442c6cd3c37e86b57a0 Mon Sep 17 00:00:00 2001 From: mxi1 Date: Mon, 15 Jun 2009 11:26:40 +0000 Subject: [PATCH] -remove noderange for webrun command git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3579 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-web/machines/ping.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-web/machines/ping.php b/xCAT-web/machines/ping.php index 4542033cb..acb10ffd5 100644 --- a/xCAT-web/machines/ping.php +++ b/xCAT-web/machines/ping.php @@ -22,7 +22,7 @@ $noderange = @$_REQUEST['noderange']; if(empty($noderange)) { echo "

Select one or more groups or nodes for ping.

\n"; exit; } //pping is one local command, which doesn't use xcat client/server protocol; -$xml = docmd('webrun',$noderange,array("pping $noderange",));#The default pping option is NULL +$xml = docmd('webrun',"",array("pping $noderange",));#The default pping option is NULL if(getXmlErrors($xml,$errors)) { echo "

ping failed: ", implode(' ',$errors), "

\n"; exit; }