summaryrefslogtreecommitdiffstats
path: root/tools/bddb/newlog.php
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.denx.de>2005-08-12 23:27:18 +0200
committerWolfgang Denk <wd@pollux.denx.de>2005-08-12 23:27:18 +0200
commitd992daf99d1ce39ee18b353b67fdfa181d83fbff (patch)
treea9b5f98b73706e024bc7cd7a14ca2674bd75a55c /tools/bddb/newlog.php
parentf9d77ed38031fa29d1495bf3cfee385450463f5b (diff)
downloadblackbird-obmc-uboot-d992daf99d1ce39ee18b353b67fdfa181d83fbff.tar.gz
blackbird-obmc-uboot-d992daf99d1ce39ee18b353b67fdfa181d83fbff.zip
Update Hymod Board Database PHP code in "tools" directory
Patch by Murray Jensen, 01 Jul 2005
Diffstat (limited to 'tools/bddb/newlog.php')
-rw-r--r--tools/bddb/newlog.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/tools/bddb/newlog.php b/tools/bddb/newlog.php
index 70f62ff49d..609bb855c5 100644
--- a/tools/bddb/newlog.php
+++ b/tools/bddb/newlog.php
@@ -10,11 +10,14 @@
pg_head("$bddb_label - New Log Entry");
- if ($serno == 0)
- die("serial number not specified!");
-
- if (isset($logno))
- die("log number must not be specified when adding!");
+ if (!isset($_REQUEST['serno']) || $_REQUEST['serno'] == '')
+ die("serial number not specified or invalid!");
+ $serno=intval($_REQUEST['serno']);
+
+ if (isset($_REQUEST['logno'])) {
+ $logno=$_REQUEST['logno'];
+ die("log number must not be specified when adding! ($logno)");
+ }
?>
<form action=donewlog.php method=POST>
<p></p>
@@ -27,7 +30,7 @@
print_field("date", array('date' => date("Y-m-d")));
// who char(20)
- print_field("who", "");
+ print_field("who", array());
// details text
print_field_multiline("details", array(), 60, 10, 'text_filter');
OpenPOWER on IntegriCloud