]> git.donarmstrong.com Git - debbugs.git/commitdiff
* fix typo in soap.cgi
authorDon Armstrong <don@donarmstrong.com>
Mon, 4 Aug 2008 22:50:32 +0000 (15:50 -0700)
committerDon Armstrong <don@donarmstrong.com>
Mon, 4 Aug 2008 22:50:32 +0000 (15:50 -0700)
cgi/soap.cgi

index b30151ef5cf9f210ac97659031cf298b4ea68101..1ca87b97b3c2be50bc5e7a903f44e5ea50e4c5f0 100755 (executable)
@@ -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;