From: Don Armstrong Date: Mon, 4 Aug 2008 22:50:32 +0000 (-0700) Subject: * fix typo in soap.cgi X-Git-Tag: release/2.6.0~488^2~21 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3376498265f721c501c3a0061b7a730ec367aa9b;p=debbugs.git * fix typo in soap.cgi --- diff --git a/cgi/soap.cgi b/cgi/soap.cgi index b30151ef..1ca87b97 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;