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:
12ce5ee
)
Kleine Codevereinfachung.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 22 Jan 2008 16:20:47 +0000
(16:20 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 22 Jan 2008 16:20:47 +0000
(16:20 +0000)
bin/mozilla/io.pl
patch
|
blob
|
history
diff --git
a/bin/mozilla/io.pl
b/bin/mozilla/io.pl
index
f81376d
..
16058ec
100644
(file)
--- a/
bin/mozilla/io.pl
+++ b/
bin/mozilla/io.pl
@@
-1856,10
+1856,7
@@
sub set_duedate {
$form->get_duedate(\%myconfig);
- my $q = new CGI;
- $result = "$form->{duedate}";
- print $q->header();
- print $result;
+ print $cgi->header() . $form->{duedate};
$lxdebug->leave_sub();
}