| # | Line 34 | Line 34 | include("graphs_config.inc.php"); | |
|---|---|---|
| 34 | include("iutils.inc.php"); | |
| 35 | ||
| 36 | if ($formMethod == "GET") { | |
| 37 | < | $machine_name = $_GET['machine_name']; |
| 38 | < | $graph = $_GET['graph']; |
| 39 | < | $submit = $_GET['submit']; |
| 37 | > | $machine_name = isset($_GET['machine_name']) ? $_GET['machine_name'] : ""; |
| 38 | > | $graph = isset($_GET['graph']) ? $_GET['graph'] : ""; |
| 39 | > | $submit = isset($_GET['submit']) ? $_GET['submit'] : ""; |
| 40 | } | |
| 41 | ||
| 42 | ?> | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |