diff options
Diffstat (limited to 'tools/bddb/execute.php')
-rw-r--r-- | tools/bddb/execute.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/bddb/execute.php b/tools/bddb/execute.php index 4cc87c7..0b62882 100644 --- a/tools/bddb/execute.php +++ b/tools/bddb/execute.php @@ -4,13 +4,9 @@ // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab - if (!isset($serno)) - $serno = 0; - else - $serno = intval($serno); + $serno=isset($_REQUEST['serno'])?$_REQUEST['serno']:''; - if (!isset($submit)) - $submit = "[NOT SET]"; + $submit=isset($_REQUEST['submit'])?$_REQUEST['submit']:"[NOT SET]"; switch ($submit) { |