# kill off all of the date/time related bits in the serializer.
my $typelookup = $soap->serializer()->{_typelookup};
for my $key (keys %{$typelookup}) {
- delete $typelookup->{$key} if defined $key and $key =~ /Month|Day|Year|date|time|duration/i;
+ if (defined $key and
+ $key =~ /Month|Day|Year|date|time|duration/i
+ ) {
+ # set the sub to always return 0
+ $typelookup->{$key}[1] = sub { 0 };
+ }
}
our $warnings = '';
* Support control at submit time. (Closes: #49228).
* Add the limit command which constrains control@ (Closes: #208130).
* Depend on libmime-tools-perl instead of libmime-perl. (Closes: #665001).
+ * Fix SOAP module hack to work around Date/Time encoding which broke in
+ newer versions of SOAP::Lite. (Closes: #785405)
[Thanks to Arnout Engelen: ]
* Add Homepage (closes: #670555).