X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=planetlab%2Fnodes%2Fnode.php;h=f976f5014fff0fa62b31ca08c60dcdb0dcb4959d;hb=f831adeb944ad788c6091d561917a154112583eb;hp=cfce37eb95c548765a86015f80132977be803130;hpb=b2cb97cec068b0f2b320325cde1d8d6b05c1a49d;p=plewww.git diff --git a/planetlab/nodes/node.php b/planetlab/nodes/node.php index cfce37e..f976f50 100644 --- a/planetlab/nodes/node.php +++ b/planetlab/nodes/node.php @@ -261,9 +261,19 @@ I've experienced a problem rebooting $hostname with the pcu_id $pcu_id; $url=rawurlencode($body); $email = ">Report a problem"; - $details->form_start(l_actions(),array("action"=>"reboot-node-with-pcu", "node_id"=>$node_id, "hostname"=>$hostname)); - print $details->tr_html($email . $details->form->submit_html("submit","Reboot Node"), "right"); - $details->form_end(); + // NOTE: not sure how to make the buttons display side-by-side... + $reboot = $details->form_start_html(l_actions(),array("action"=>"reboot-node-with-pcu", + "node_id"=>$node_id, "hostname"=>$hostname, "test"=>FALSE)); + $reboot .= $email . $details->form->submit_html("submit","Reboot Node"); + $reboot .= $details->form_end_html(); + + $reboot .= $details->form_start_html(l_actions(),array("action"=>"reboot-node-with-pcu", + "node_id"=>$node_id, "hostname"=>$hostname, "test"=>TRUE)); + $reboot .= $details->form->submit_html("submit","Test PCU"); + $reboot .= $details->form_end_html(); + + $details->tr($reboot, "right"); + } $details->space();