projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c2d836
)
Datenbank aktualisieren: Tabelle der aktualisierbaren Datenbanken mit id versehen.
author
Udo Spallek
<info@wissensvermittlung.com>
Thu, 30 Nov 2006 13:32:42 +0000
(13:32 +0000)
committer
Udo Spallek
<info@wissensvermittlung.com>
Thu, 30 Nov 2006 13:32:42 +0000
(13:32 +0000)
bin/mozilla/admin.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/admin.pl
b/bin/mozilla/admin.pl
index
1187125
..
a4c8d0c
100644
(file)
--- a/
bin/mozilla/admin.pl
+++ b/
bin/mozilla/admin.pl
@@
-1326,11
+1326,12
@@
sub update_dataset {
<center>
<h2>$form->{title}</h2>
|;
-
+ my $field_id = 0;
foreach $key (sort keys %needsupdate) {
if ($needsupdate{$key} ne $form->{dbversion}) {
- $upd .= qq|<input
name="db$key" type=checkbox value=1
checked> $key\n|;
+ $upd .= qq|<input
id="$field_id" name="db$key" type="checkbox" value="1"
checked> $key\n|;
$form->{dbupdate} .= "db$key ";
+ $field_id++;
}
}