From 3376498265f721c501c3a0061b7a730ec367aa9b Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 4 Aug 2008 15:50:32 -0700 Subject: [PATCH] * fix typo in soap.cgi --- cgi/soap.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cgi/soap.cgi b/cgi/soap.cgi index b30151e..1ca87b9 100755 --- a/cgi/soap.cgi +++ b/cgi/soap.cgi @@ -20,9 +20,9 @@ my $soap = Debbugs::SOAP::Server # (Nothing in Debbugs should be looked at as if it were date/time) we # kill off all of the date/time related bits in the serializer. my $typelookup = $soap->serializer()->{_typelookup}; -for my $key (keys %{$type_lookup}) { - next unless /Month|Day|Year|date|time|duration/; - delete $type_lookup->{$key}; +for my $key (keys %{$typelookup}) { + next unless /Month|Day|Year|date|time|duration/i; + delete $typelookup->{$key}; } $soap->handle; -- 2.39.2