diff options
| author | <[email protected]> | 2005-08-16 17:34:22 +0200 |
|---|---|---|
| committer | <[email protected]> | 2005-08-16 17:34:22 +0200 |
| commit | 22e05df45cc343eda3266312bde676737d9bc70c (patch) | |
| tree | 6f2209c6675e79d000e359725872a3ba15262140 /tools/bddb/execute.php | |
| parent | d4f5c72896b6b47cae276f49081a801491be6838 (diff) | |
| parent | 98128f389cc318dbd1d597cf8d2d09902cddcb4b (diff) | |
Merge with pollux.denx.org:/home/git/u-boot/.git
Diffstat (limited to 'tools/bddb/execute.php')
| -rw-r--r-- | tools/bddb/execute.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tools/bddb/execute.php b/tools/bddb/execute.php index 7adcfec2018..0b62882d751 100644 --- a/tools/bddb/execute.php +++ b/tools/bddb/execute.php @@ -1,16 +1,12 @@ <?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 - // Murray Jensen <[email protected]> + // Murray Jensen <[email protected]> // 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) { |
