diff options
| author | Wolfgang Denk <[email protected]> | 2005-08-12 23:55:10 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2005-08-12 23:55:10 +0200 |
| commit | 55d150d95dbd4612f229e1f503c3a6aa8ed08a96 (patch) | |
| tree | e8b755c6b0c5d56c8d8777236baab8b1deb67451 /tools/bddb/execute.php | |
| parent | 2191923072413972d8dbf3e1b2f8ce6762a85800 (diff) | |
| parent | 90e4e7836596d8ae5cead41a776b2b95c84182c6 (diff) | |
Merge with /home/wd/git/u-boot/master
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) { |
