diff options
Diffstat (limited to 'frontends/php/include/graphs.inc.php')
| -rw-r--r-- | frontends/php/include/graphs.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontends/php/include/graphs.inc.php b/frontends/php/include/graphs.inc.php index def7e4fc..3dfa5b83 100644 --- a/frontends/php/include/graphs.inc.php +++ b/frontends/php/include/graphs.inc.php @@ -259,6 +259,19 @@ $h2=$h2." "; $h2=$h2."<input class=\"button\" type=\"submit\" name=\"action\" value=\"go\">"; + if(isset($_GET["graphid"])&&($_GET["graphid"]!=0)) + { + $h2=$h2."<input name=\"graphid\" type=\"hidden\" value=\"".$_GET["graphid"]."\" size=12>"; + } + if(isset($_GET["itemid"])&&($_GET["itemid"]!=0)) + { + $h2=$h2."<input name=\"itemid\" type=\"hidden\" value=\"".$_GET["itemid"]."\" size=12>"; + } + if(isset($_GET["action"])) + { + $h2=$h2."<input name=\"action\" type=\"hidden\" value=\"".$_GET["action"]."\" size=22>"; + } + show_header2($h1,$h2,"<form name=\"form2\" method=\"get\" action=\"$url\">","</form>"); return; |
